forked from Medium/phantomjs
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 1.51 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
{
"name": "slimerjs",
"version": "0.906.2",
"keywords": [
"slimerjs",
"headless",
"gecko"
],
"description": "Headless Gecko with JS API",
"homepage": "https://github.com/graingert/slimerjs",
"repository": {
"type": "git",
"url": "git://github.com/graingert/slimerjs.git"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"author": {
"name": "Dan Pupius",
"email": "dan@obvious.com",
"url": "http://pupius.co.uk"
},
"maintainers": [
{
"name": "Thomas Grainger",
"email": "tagrain@gmail.com",
"web": "https://graingert.co.uk/"
},
{
"name": "David Hanskopeit",
"email": "david@monkey-works.de",
"web": "https://www.monkey-works.de/"
}
],
"main": "lib/slimerjs",
"bin": {
"slimerjs": "./bin/slimerjs"
},
"scripts": {
"install": "node install.js",
"test": "nodeunit --reporter=minimal test/tests.js && eslint ."
},
"dependencies": {
"es6-promise": "^3.2.1",
"extract-zip": "~1.5.0",
"fs-extra": "~0.30.0",
"hasha": "^2.2.0",
"kew": "~0.7.0",
"progress": "~1.1.8",
"request": "~2.74.0",
"request-progress": "~2.0.1",
"which": "~1.2.10"
},
"devDependencies": {
"eslint": "2.7.0",
"nodeunit": "0.9.1",
"webdriverio": "^4.2.3"
},
"bundledDependencies": [
"extract-zip",
"fs-extra",
"hasha",
"kew",
"progress",
"request",
"request-progress",
"which"
]
}