-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@livingdocs/conf",
"version": "0.0.0-placeholder",
"description": "Package to load, merge and access environment-specific configuration files.",
"main": "index.js",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/livingdocsIO/livingdocs-conf"
},
"keywords": [
"livingdocs",
"configuration",
"conf"
],
"files": [
"index.js"
],
"author": "livingdocsIO",
"homepage": "https://github.com/livingdocsIO/livingdocs-conf",
"scripts": {
"test": "mocha --recursive --reporter spec --check-leaks --slow 10ms --timeout 20000 test/unit",
"test:watch": "npm run test -- --watch ./test/unit/*.js ./index.js",
"test:coverage": "nyc --reporter=lcov npm test"
},
"dependencies": {
"jsonpointer": "^5.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^17.0.0"
},
"engines": {
"node": ">=8",
"npm": ">=6.0.0"
},
"release": {
"extends": "@livingdocs/semantic-release-presets/npm-github"
}
}