-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "headless-fleet",
"version": "1.0.0",
"description": "Manage and run a fleet of headless chrome.",
"repository": "https://github.com/Corei13/headless-fleet",
"scripts": {
"n": "node_modules/.bin/babel-node",
"watch": "node_modules/.bin/babel-watch",
"lint": "node_modules/.bin/eslint .",
"flow": "node_modules/flow-bin/cli.js",
"build": "node_modules/.bin/babel src/ -d lib/ --copy-files",
"master": "./lib/master/index.js",
"worker": "./lib/worker/index.js"
},
"author": "Dhananjoy Biswas",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest-node": "^1.0.0",
"eslint": "^3.1.1",
"eslint-plugin-flowtype": "^2.50.0",
"flow-bin": "^0.77.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"express": "^4.16.3",
"moment": "^2.22.2",
"moniker": "^0.1.2",
"puppeteer": "^1.6.0",
"request": "^2.87.0",
"request-promise": "^4.2.2"
},
"babel": {
"presets": [
[
"latest-node",
{
"target": "current"
}
],
"flow"
],
"plugins": [
"transform-class-properties",
"transform-es2015-modules-commonjs"
]
},
"main": "index.js"
}