-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"private": true,
"version": "1.1.4",
"name": "goose-chrome-environment",
"main": "lib/ChromeEnvironment.js",
"repository": "redco/goose-chrome-environment",
"description": "Environment for Goose Parser which allows to run it in Chrome headless via Puppeteer API",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"chrome",
"chromium",
"headless",
"environment",
"parser",
"crawler",
"crawling",
"spider",
"scraper",
"scraping",
"site",
"page",
"dom",
"javascript"
],
"dependencies": {
"debug": "^3.1.0",
"goose-abstract-environment": "^1.1.0",
"lodash.clone": "^4.5.0",
"lodash.defaults": "^4.2.0",
"lodash.sample": "^4.2.1",
"mkdirp": "^0.5.1",
"puppeteer": "^1.14.0"
},
"devDependencies": {
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"lint-staged": "^3.2.6",
"pre-commit": "^1.2.2",
"rimraf": "^2.5.4"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix .",
"lint:staged": "lint-staged",
"build": "node build.js",
"prepublish": "node build"
}
}