forked from amir20/phantomjs-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.69 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
{
"author": "Amir Raminfar <[email protected]>",
"name": "phantom",
"description": "PhantomJS integration module for NodeJS",
"homepage": "https://github.com/amir20/phantomjs-node",
"version": "3.0.3",
"repository": {
"type": "git",
"url": "git://github.com/amir20/phantomjs-node.git"
},
"contributors": [
{
"name": "Amir Raminfar",
"email": "[email protected]"
}
],
"keywords": [
"phantom",
"phantomjs",
"driver"
],
"main": "lib/index.js",
"engines": {
"node": ">=5.0.0"
},
"dependencies": {
"linerstream": "^0.1.4",
"phantomjs-prebuilt": "^2.1.4",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-node5": "^11.1.0",
"del": "^2.2.0",
"eslint": "^3.8.1",
"eslint-config-fb-strict": "^17.0.0",
"eslint-config-fbjs": "^1.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-react": "^6.4.1",
"flow-bin": "^0.34.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-copy": "^0.0.2",
"gulp-eslint": "^3.0.0",
"gulp-newer": "^1.3.0",
"gulp-watch": "^4.3.5",
"jest": "^17.0.0"
},
"license": "ISC",
"scripts": {
"lint": "eslint . && flow check",
"test": "npm run lint && gulp test",
"prepublish": "gulp build"
},
"jest": {
"testPathDirs": [
"<rootDir>/lib"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"node_modules/",
"jest-modules/"
],
"testEnvironment": "node"
}
}