-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "phantomized",
"version": "0.1.0",
"description": "Simple script that creates releases for just the dynamic ELFs required by PhantomJS",
"main": "index.js",
"scripts": {
"build": "docker build --rm -t phantomized .",
"create": "babel-node index.js",
"start": "./build.sh",
"release": "npm run build && docker run -e PHANTOM_VERSION=2.1.1 -e GITHUB_TOKEN=$GITHUB_TOKEN phantomized",
"test": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gravebot/phantomized.git"
},
"author": "Dustin Blackman",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gravebot/phantomized/issues"
},
"homepage": "https://github.com/Gravebot/phantomized#readme",
"dependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015-node4": "^2.0.3",
"bluebird": "^3.3.1",
"commander": "^2.9.0",
"fs-extra": "^0.26.5",
"github": "^0.2.4",
"ramda": "^0.19.1",
"request": "^2.69.0"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"eslint": "^1.10.3",
"eslint-config-busbud": "^0.1.2",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.2"
},
"babel": {
"presets": [
"es2015-node4"
]
},
"eslintConfig": {
"extends": "busbud"
}
}