-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 KB
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
{
"name": "api",
"version": "1.0.1",
"description": "Public API for cloudytimemachine.com",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha && npm run standard",
"standard": "semistandard"
},
"repository": "https://github.com/cloudytimemachine/api",
"author": "Ross Kukulinski <ross@kukulinski.com>",
"license": "MIT",
"dependencies": {
"async": "^2.0.0-rc.6",
"body-parser": "^1.15.1",
"bull": "^1.0.0-rc2",
"bunyan": "^1.8.1",
"express": "^4.13.4",
"express-bunyan-logger": "^1.3.1",
"http-shutdown": "^1.1.0",
"lodash": "^4.16.2",
"pkginfo": "^0.4.0",
"rethinkdbdash": "^2.3.23",
"uuid": "^2.0.3"
},
"devDependencies": {
"k8s-scripts": "^3.0.0",
"mocha": "^3.0.2",
"semistandard": "^9.0.0",
"should": "^11.1.0",
"superagent": "^2.3.0"
},
"semistandard": {
"globals": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"describe",
"it"
],
"ignore": [
"test/fixtures/db_test_data.js"
]
}
}