-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 773 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 773 Bytes
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
{
"name": "build-watcher",
"version": "1.0.0",
"description": "Listens for a web hook and changes the traffic light based on build status",
"main": "app.js",
"dependencies": {
"express": "^4.13.3",
"body-parser": "^1.15.0",
"dotenv":"^2.0.0"
},
"scripts": {
"test": "jasmine-node --color --autotest tests --watch controllers models",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonAbney/CodeRace.git"
},
"author": "Don Abney",
"license": "ISC",
"bugs": {
"url": "https://github.com/DonAbney/BuildWatcher/issues"
},
"homepage": "https://github.com/DonAbney/BuildWatcher#readme",
"devDependencies": {
"jasmine-core": "^2.4.1",
"jasmine-node": "^1.14.5"
}
}