-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
63 lines (63 loc) · 1.86 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
{
"name": "simple-headless-chrome",
"version": "4.3.10",
"description": "Headless Chrome abstraction to simplify the interaction with the browser. It may be used for crawling sites, test automation, etc",
"main": "index.js",
"scripts": {
"documentation": "documentation readme lib/actions.js --section=Methods",
"build": "rm -rf build; babel lib -d build",
"watch": "babel --watch lib -d build",
"prepublish": "npm run build; npm run test",
"prepare": "npm run build",
"prepare-minor": "npm run test; npm version minor; git push; git push --tags; npm publish",
"prepare-patch": "npm run test; npm version patch; git push; git push --tags; npm publish",
"preversion": "npm run -s documentation",
"test": "npm run build; DEBUG='HeadlessChrome' tap test 'build/test/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucianoGanga/simple-headless-chrome.git"
},
"keywords": [
"headless",
"chrome",
"chromium",
"headless-browser",
"phantom-js",
"nightmare",
"casper",
"horseman",
"crawler",
"test-automation",
"browser",
"node",
"browser"
],
"author": "Luciano Andrés Ganga Carabante",
"engines": {
"node": ">=4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LucianoGanga/simple-headless-chrome/issues"
},
"homepage": "https://github.com/LucianoGanga/simple-headless-chrome#readme",
"dependencies": {
"babel-polyfill": "^6.23.0",
"bluebird": "^3.5.0",
"chrome-launcher": "^0.3.2",
"chrome-remote-interface": "^0.24.2",
"cssesc": "^1.0.0",
"deepmerge": "^1.5.0",
"lodash": "^4.17.4",
"mz": "^2.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"documentation": "^4.0.0-rc.1",
"jquery": "^3.2.1",
"standard": "^10.0.2",
"tap": "^10.7.0"
}
}