-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 892 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
43
44
45
46
{
"name": "silex-component-config",
"version": "0.0.2",
"description": "[SILEX][COMPONENT] Configuration file manager (json, yml, js)",
"author": "Valentin Allaire <valentin@sitexw.fr>",
"license": "MIT",
"keywords": [
"config",
"manager",
"file",
"json",
"yml",
"js",
"configuration",
"silex",
"component"
],
"main": "index.js",
"dependencies": {
"spaceload": "<2.0.0",
"js-yaml": "3.x",
"object-merge": "2.x"
},
"devDependencies": {
"mocha": "2.x"
},
"scripts": {
"test": "mocha ./test/test.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/silexjs/component-config.git"
},
"bugs": {
"url": "https://github.com/silexjs/component-config/issues"
},
"homepage": "https://github.com/silexjs/component-config",
"autoload": {
"psr-4": {
"Silex\\Component\\Config": "./lib/"
}
}
}