-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "coffee-conf",
"description": "Write your config files in coffee-script.",
"keywords": ["coffee-script", "config", "loading", "application", "dsl", "domain", "specific", "language"],
"version": "0.1.2",
"author": "Stefan Huber <[email protected]>",
"homepage": "http://msnexploder.github.com/coffee-conf",
"main": "lib/coffee-conf",
"files": [
"Cakefile",
"CHANGELOG.md",
"doc",
"lib",
"LICENSE",
"README.md",
"spec",
"src"
],
"scripts": {
"test": "cake test"
},
"directories": {
"doc":"./doc",
"lib":"./lib"
},
"engines": {
"node": ">= 0.4.x <= 0.6.x"
},
"dependencies": {
"coffee-script": ">= 1.1.2 < 2.0.0"
},
"devDependencies": {
"docco": ">= 0.3.0 < 0.4.0",
"vows": ">= 0.5.13 < 0.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MSNexploder/coffee-conf.git"
},
"bugs": { "url": "https://github.com/MSNexploder/coffee-conf/issues" },
"licenses": [
{ "type": "MIT",
"url": "https://github.com/MSNexploder/coffee-conf/raw/master/LICENSE"
}
]
}