forked from ExpediaGroup/determination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "@vrbo/determination",
"description": "Configuration resolver using confidence and shortstop.",
"version": "6.3.1",
"keywords": [
"application",
"configuration",
"confidence",
"shortstop"
],
"license": "MIT",
"author": "Trevor Livingston <tlivings@gmail.com>",
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/ExpediaGroup/determination.git"
},
"bugs": "https://github.com/ExpediaGroup/determination/issues",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"commit": "cz",
"lint": "eslint lib",
"unit": "npm run lint && ENV_TEST=5678 tape test/*.js",
"test": "nyc npm run unit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@hapi/hoek": "^9.0.4 || ^10.0.0 || ^11.0.1",
"@hapipal/confidence": "^6.0.1",
"comment-json": "^4.1.1",
"dot-prop": "^6.0.0",
"entries": "^1.0.1",
"joi": "^17.2.0",
"shortstop": "^1.0.3"
},
"devDependencies": {
"@hapi/eslint-plugin": "^6.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.0",
"nyc": "^15.0.0",
"semantic-release": "^19.0.3",
"tape": "^5.0.0"
}
}