-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "settings-lib",
"description": "Simple library allowing override capability for application settings",
"main": "./dist/settings.js",
"version": "2.0.0",
"author": "Joshua Thomas (http://github.com/brozeph)",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16.0"
},
"keywords": [
"settings",
"config",
"override",
"twelve-factor",
"yaml",
"json",
"environment"
],
"repository": "git://github.com/brozeph/settings-lib.git",
"homepage": "http://github.com/brozeph/settings-lib",
"scripts": {
"lint": "gulp lint",
"posttest": "c8 report --reporter=text-lcov > ./coverage/lcov.info",
"pretest": "gulp clean && gulp lint",
"test": "c8 mocha ./test/src",
"test:unit": "mocha ./test/src"
},
"devDependencies": {
"c8": "^7.11.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.9.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^3.0.0",
"mocha": "^9.2.0"
},
"dependencies": {
"yaml": "^1.10.2"
}
}