-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 939 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
29
30
31
32
33
34
35
36
37
38
39
{
"name": "casperjs-driver",
"version": "1.0.0",
"description": "Using node.js to drive casperjs",
"main": "index.js",
"scripts": {
"preinstall": "npm install -g casperjs && npm install -g phantomjs-prebuilt",
"test": "grunt coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:fzheng/casperjs-driver.git"
},
"keywords": [
"node",
"casper"
],
"author": "Feng Zheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/fzheng/casperjs-driver/issues"
},
"dependencies": {
"casperjs": "^1.1.4",
"lodash": "^4.17.21",
"socket.io": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-security": "^1.4.0",
"grunt": "^1.5.3",
"grunt-env": "^0.4.4",
"grunt-eslint": "^21.0.0",
"grunt-exec": "^3.0.0"
}
}