-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1000 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1000 Bytes
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": "@istex/config-component",
"version": "1.6.0",
"description": "YAML config component for nodeJs",
"main": "index.js",
"scripts": {
"test": "export NODE_ENV='test'; mocha"
},
"bin": {
"view-config": "bin/view-config.js",
"install-config": "bin/install-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inist-CNRS/node-config-component.git"
},
"keywords": [
"nodejs",
"yaml",
"config",
"javascript"
],
"engines": {
"node": ">=12"
},
"author": "jj618",
"license": "MIT",
"bugs": {
"url": "https://github.com/Inist-CNRS/node-config-component/issues"
},
"homepage": "https://github.com/Inist-CNRS/node-config-component#readme",
"dependencies": {
"command-line-args": "^6.0.0",
"dtrim": "^1.12.0",
"fs-extra": "^5.0.0",
"lodash": "^4.17.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"rewire": "^6.0.0",
"should": "^13.2.1"
}
}