forked from OnetapInc/chromy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.37 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
{
"name": "chromy",
"version": "0.5.6",
"description": "The library for manipulating headless chrome with Nightmare.js like API.",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "babel test --source-maps --out-dir dist_test",
"test": "WITH_BABEL=1 mocha dist_test --compilers js:babel-core/register --require babel-polyfill",
"build": "babel src --source-maps --out-dir dist --ignore '**/*.test.js'",
"lint": "eslint --ext .js src examples"
},
"repository": {
"type": "git",
"url": "https://github.com/OnetapInc/chromy.git"
},
"bugs": "https://github.com/OnetapInc/chromy/issues",
"author": "shinji <[email protected]>",
"license": "MIT",
"dependencies": {
"async-chain-proxy": "^0.1.5",
"babel-runtime": "^6.26.0",
"chrome-launcher": "^0.4.0",
"chrome-remote-interface": "^0.23.2",
"jimp": "^0.2.28",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.3.0"
}
}