-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1018 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1018 Bytes
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
{
"name": "scrape",
"version": "1.1.0",
"description": "",
"main": "go",
"engines": {
"node": ">=10.12"
},
"scripts": {
"lint": "eslint --fix src/**/*.js",
"test": "mocha --recursive"
},
"author": "",
"license": "ISC",
"dependencies": {
"archiver": "^3.0.0",
"case": "^1.6.1",
"cheerio": "^1.0.0-rc.2",
"colors": "^1.3.3",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"deepmerge": "^3.2.0",
"extract-zip": "^1.6.7",
"mkdirp": "^0.5.1",
"puppeteer": "^1.20.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rimraf": "^2.6.3",
"webp-converter": "^2.2.2",
"zlib": "^1.0.5"
},
"devDependencies": {
"eslint": "^5.15.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"expect.js": "^0.3.1",
"husky": "^1.3.1",
"mocha": "^6.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm test"
}
}
}