-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
{
"name": "config-kit",
"version": "2.1.0",
"description": "A universal, layered configuration system",
"type": "module",
"exports": "./src/index.js",
"author": "Axway, Inc. <npmjs@appcelerator.com>",
"maintainers": [
"Chris Barber <cbarber@axway.com>"
],
"license": "Apache-2.0",
"keywords": [
"config",
"conf",
"cli"
],
"scripts": {
"coverage": "c8 npm run test",
"lint": "eslint --ignore-pattern test/fixtures src test",
"prepublishOnly": "npm run lint",
"test": "npm run lint && mocha test/**/test-*.js --reporter spec"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"detect-indent": "^7.0.0",
"fs-extra": "^10.1.0",
"import-fresh": "^3.3.0",
"joi": "^17.6.0",
"snooplogg": "^5.0.0"
},
"devDependencies": {
"c8": "^7.11.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.15.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"tmp": "^0.2.1"
},
"homepage": "https://github.com/appcelerator/config-kit",
"bugs": "https://github.com/appcelerator/config-kit/issues",
"repository": "https://github.com/appcelerator/config-kit",
"engines": {
"node": ">=14.15.0"
}
}