-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "pr-bot",
"version": "0.2.0",
"description": "A bot to run after Travis has run it's build's and tests.",
"main": "src/npm-module.js",
"bin": {
"pr-bot": "bin/cli.js"
},
"scripts": {
"prepublish": "npm run test",
"test": "_mocha './test/node/**/*.js'",
"test-with-coverage": "istanbul cover _mocha './test/node/**/*.js' --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gauntface/web-devrel-bot.git"
},
"author": "Google Web DevRel",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gauntface/web-devrel-bot/issues"
},
"homepage": "https://github.com/gauntface/web-devrel-bot#readme",
"dependencies": {
"chalk": "^2.0.1",
"fs-extra": "^4.0.1",
"github": "^14.0.0",
"glob": "^7.1.2",
"gzip-size": "^3.0.0",
"meow": "^3.7.0"
},
"devDependencies": {
"blanket": "^1.2.3",
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"proxyquire": "^1.8.0",
"sinon": "^3.0.0"
}
}