-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "configurine",
"description": "A Node JS application that provides a REST interface for managing and retrieving config values",
"contributors": [
"Mac Angell <mac.ang311@gmail.com>"
],
"version": "1.1.1",
"dependencies": {
"opter": "0.x.x",
"mongodb":"1.x.x",
"underscore": "1.x.x",
"async": "0.x.x",
"hapi": "1.x.x",
"joi": "1.x.x",
"tracer": "0.x.x",
"eidetic": "0.x.x",
"statsd-client": "0.x.x",
"node-uuid": "1.x.x",
"clone": "0.x.x",
"redis": "0.x.x",
"ratify": "0.x.x",
"hapi-statsd": "0.x.x"
},
"devDependencies": {
"mocha": "1.x.x",
"nock": "0.x.x",
"jshint": "0.9.0",
"request": "2.x.x",
"blanket": "1.x.x",
"travis-cov": "0.x.x",
"sinon": "1.x.x",
"harvey": "0.x.x"
},
"keywords": [
"config"
],
"engines": {
"node": ">=0.10.0"
},
"main": "./app.js",
"repository": {
"type": "git",
"url": "git@github.com:mac-/configurine.git"
},
"scripts": {
"test": "make test && make test-cov",
"travis-cov": { "threshold": 90 },
"start": "app.js"
},
"config": {
"blanket": {
"pattern": "//^((?!\/node_modules\/)(?!\/test\/).)*$/gi",
"onlyCwd": true,
"data-cover-flags": {
"branchTracking": true
}
}
},
"subdomain": "configurine"
}