-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
36 lines (36 loc) · 953 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
{
"name": "nodejs-nightly-builder",
"version": "1.0.1",
"description": "An application to trigger nightly builds of Node.js for distribution at nodejs.org _if_ there is new code available on a given branch",
"main": "nightly-builder.js",
"author": "Rod Vagg <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "standard",
"test": "npm run lint && node ./test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejs/nodejs-nightly-builder.git"
},
"dependencies": {
"after": "^0.8.2",
"bl": "^4.0.3",
"ghrepos": "^2.1.0",
"hyperquest": "^2.1.3",
"jsonist": "^3.0.1",
"minimist": "^1.2.5",
"strftime": "^0.10.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"application-config": "^2.0.0",
"ghauth": "^4.0.0",
"standard": "^14.3.4",
"tape": "^5.0.1"
},
"bin": {
"nodejs-nightly-builder": "./nightly-builder.js"
},
"preferGlobal": true
}