forked from baudehlo/node-phantom-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 786 Bytes
/
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
{
"author": "Matt Sergeant (matt@hubdoc.com)",
"name": "node-phantom-simple",
"description": "Simple and reliable bridge between Node.js and PhantomJS / SlimerJS",
"version": "2.2.4",
"license": "MIT",
"repository": "baudehlo/node-phantom-simple",
"main": "node-phantom-simple.js",
"files": [
"bridge.js",
"headless_error.js",
"node-phantom-simple.js"
],
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "npm run test-phantom && npm run test-slimer",
"test-phantom": "npm run lint && ./node_modules/.bin/mocha",
"test-slimer": "ENGINE=slimerjs ./node_modules/.bin/mocha"
},
"devDependencies": {
"eslint": "^3.4.0",
"mocha": "^3.0.2",
"phantomjs": "^1.9.19"
},
"dependencies": {
"debug": "^2.2.0"
}
}