-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
38 lines (38 loc) · 1.25 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
{
"name": "ycb",
"version": "2.3.0",
"description": "YCB is a multi-dimensional configuration library that builds bundles from resource files describing a variety of values.",
"author": "Ric Allinson <[email protected]>",
"license": "BSD",
"contributors": [
"Drew Folta <[email protected]>",
"Michael Ridgway <[email protected]>",
"Caridy Patino <[email protected]>",
"Isao Yagi <[email protected]>"
],
"main": "index",
"scripts": {
"cover": "nyc npm run test",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"pretest": "npm run lint",
"test": "mocha tests/unit --recursive --reporter spec",
"posttest": "node -r ./tests/edgeRuntime.js ./node_modules/.bin/mocha tests/unit --recursive --reporter spec"
},
"devDependencies": {
"eslint": "^9.0.0",
"mocha": "^10.0.0",
"nyc": "^17.0.0",
"prettier": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/yahoo/ycb.git"
},
"bugs": "https://github.com/yahoo/ycb/issues",
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4
}
}