forked from yahoo/ycb-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "ycb-config",
"version": "2.1.3",
"description": "Configuration manager for Yahoo configuration bundles",
"author": "Drew Folta <[email protected]>",
"contributors": [],
"main": "./lib/index.js",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">0.8",
"npm": ">1.0"
},
"homepage": "https://github.com/yahoo/ycb-config",
"dependencies": {
"ycb": "^2.1.2",
"json5": "~2.1.3",
"yamljs": "^0.3.0",
"deep-freeze": "~0.0.1"
},
"devDependencies": {
"chai": "*",
"istanbul": "*",
"jshint": "*",
"mocha": "*",
"xunit-file": "*"
},
"scripts": {
"cover": "./node_modules/istanbul/lib/cli.js cover -- ./node_modules/mocha/bin/_mocha tests/lib/*.js --reporter spec",
"test": "jshint lib/index.js lib/cache.js tests/lib/index.js tests/lib/cache-test.js && _mocha tests/lib/index.js tests/lib/cache-test.js --reporter spec"
},
"license": "BSD",
"repository": {
"type": "git",
"url": "[email protected]:yahoo/ycb-config.git"
}
}