-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 895 Bytes
/
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": "fconf",
"version": "1.0.1",
"main": "index.js",
"module": "index.js",
"license": "MIT",
"description": "Hierarchical configuration loader with support for javascript functions as configuration options.",
"scripts": {
"test": "jest"
},
"repository": "git+https://github.com/Exifers/fconf.git",
"keywords": [
"configuration",
"options",
"functions",
"javascript",
"node",
"hierarchical"
],
"author": "Exifers",
"bugs": {
"url": "https://github.com/Exifers/fconf/issues"
},
"homepage": "https://github.com/Exifers/fconf#readme",
"dependencies": {
"case": "^1.6.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"glob": "^7.1.6",
"jest": "^25.1.0"
},
"files": [],
"jest": {
"watchPathIgnorePatterns": [
"workbench"
],
"testPathIgnorePatterns": [
"^.*\\.data\\.js$"
]
}
}