-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "load-config-file",
"description": "Load the config file as a plain object. The config file format can be registered.",
"version": "1.0.8",
"homepage": "https://github.com/snowyu/load-config-file.js",
"repository": {
"type": "git",
"url": "git://github.com/snowyu/load-config-file.js.git"
},
"main": "lib/",
"files": [
"README.md",
"LICENSE-MIT",
"*.js",
"*.ts",
"*.coffee",
"test",
"src",
"lib"
],
"keywords": [
"load",
"config",
"configuration",
"file",
"yaml",
"json",
"cson",
"ini",
"object",
"fs",
"abstract"
],
"dependencies": {
"path.js": "^1.0.7",
"promise-sequence": "^1.0.0",
"util-ex": "^0.3.15"
},
"devDependencies": {
"chai": "^4.1.2",
"coffee-coverage": "^2.0.1",
"coffee-script": "^1.12.7",
"grunt": "~1.0.1",
"grunt-contrib-clean": "*",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-copy": "*",
"grunt-contrib-watch": "*",
"grunt-mocha-test": "*",
"grunt-newer": "*",
"grunt-release": "*",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"pre-commit": "^1.0.2",
"rimraf": "^2.6.2",
"shasum": "^1.0.2",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0"
},
"scripts": {
"test": "grunt test",
"test-cov": "istanbul cover node_modules/.bin/_mocha --report lcovonly"
},
"contributors": [
{
"name": "Riceball LEE",
"email": "snowyu.lee@gmail.com",
"url": "https://github.com/snowyu"
}
],
"maintainers": [
{
"name": "Riceball LEE",
"email": "snowyu.lee@gmail.com"
}
],
"pre-commit": [
"test"
],
"bugs": {
"url": "https://github.com/snowyu/load-config-file.js/issues"
},
"license": "MIT",
"stability": "unstable"
}