-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
116 lines (116 loc) · 3.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "instamancer",
"version": "3.3.1",
"description": "Scrape the Instagram API with Puppeteer",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"instamancer": "src/cli.js"
},
"man": [
"./man/instamancer.1"
],
"files": [
"index.js",
"index.d.ts",
"src/**/*.js",
"src/**/*.d.ts",
"plugins/*.js",
"plugins/*.d.ts",
"plugins/**/*.js",
"plugins/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --declaration",
"test": "jest --env=node",
"test:ci": "jest --forceExit --env=node",
"lint": "tslint -p tsconfig.json -p tests/tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write \"{src,tests}/**/*.ts\"",
"clean": "rimraf src/**/*{.js,.d.ts} src/*{.js,.d.ts} plugins/**/*{.js,.d.ts} plugins/*{.js,.d.ts} tests/**/*{.js,.d.ts} tests/*{.js,.d.ts} examples/*{.js,.d.ts} index{.js,.d.ts} *.log"
},
"author": "ScriptSmith",
"license": "MIT",
"keywords": [
"instagram",
"instagram api",
"data mining",
"scraping"
],
"dependencies": {
"await-lock": "^2.0.1",
"aws-sdk": "^2.715.0",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"env-paths": "^2.2.0",
"fp-ts": "^2.7.0",
"io-ts": "^2.2.9",
"io-ts-excess": "^1.0.1",
"json2csv": "^5.0.1",
"lodash": "^4.17.19",
"puppeteer": "^5.2.0",
"tmp": "^0.2.1",
"uuid": "^8.2.0",
"winston": "^3.3.3",
"yargs": "^15.4.1"
},
"engines": {
"node": ">=10.15.0"
},
"repository": {
"type": "git",
"url": "[email protected]:ScriptSmith/instamancer.git"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/concat-stream": "^1.6.0",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.4",
"@types/json2csv": "^5.0.1",
"@types/node": "^14.0.23",
"@types/tmp": "^0.2.0",
"@types/uuid": "^8.0.0",
"@types/yargs": "^15.0.5",
"express": "^4.17.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"transform-json-types": "^0.7.0",
"ts-jest": "^26.1.3",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"preset": "ts-jest",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint"
}
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"bracketSpacing": false,
"tabWidth": 4
},
"lint-staged": {
"*.json": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
}
}