-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
41 lines (41 loc) · 1.05 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.5.1",
"description": "Configuration manager for Yahoo configuration bundles",
"author": "Drew Folta <[email protected]>",
"contributors": [],
"main": "./lib/index.js",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"homepage": "https://github.com/yahoo/ycb-config",
"dependencies": {
"json5": "^2.2.3",
"yamljs": "^0.3.0",
"ycb": "^2.2.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^9.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"sinon": "^19.0.2"
},
"scripts": {
"lint": "eslint lib/*.js tests/lib/*.js && prettier --check .",
"test": "mocha tests/lib/index.js tests/lib/cache-test.js tests/lib/deep.js --reporter spec"
},
"license": "BSD",
"repository": {
"type": "git",
"url": "[email protected]:yahoo/ycb-config.git"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4
}
}