forked from ember-learn/ember-help-wanted-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.28 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
{
"name": "ember-help-wanted-webhook",
"version": "0.0.0",
"description": "Used to handle webhook notifications for Github issues",
"main": "build/index.js",
"config": {
"MOCHA_OPTS": "--compilers js:babel-register --timeout 5000"
},
"scripts": {
"build": "rm -rf build/*; babel src -d build",
"start": "npm run build && node build/index.js",
"test": "mocha $npm_package_config_MOCHA_OPTS tests/unit/*.js",
"test:watch": "mocha $npm_package_config_MOCHA_OPTS -w tests/unit/*.js",
"populate:dev": "npm run build && ./build/populate.js ember-cli/ember-cli | bunyan"
},
"repository": {
"type": "git",
"url": "https://github.com/ember-learn/ember-help-wanted-webhook.git"
},
"author": "David Baker",
"license": "ISC",
"bugs": {
"url": "https://github.com/ember-learn/ember-help-wanted-webhook/issues"
},
"homepage": "https://github.com/ember-learn/ember-help-wanted-webhook",
"dependencies": {
"babel-cli": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-register": "6.8.0",
"bluebird": "3.3.5",
"bunyan": "1.8.1",
"github": "0.2.4",
"github-webhook-handler": "^0.5.0",
"mocha": "^2.4.5",
"mocha-only-detector": "^0.1.0",
"nano": "6.2.0",
"parse-link-header": "0.4.1",
"sinon": "^1.17.3"
}
}