-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 897 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
{
"author": "Alex Wayne (alexwayne.tumblr.com)",
"name": "coffeeson",
"description": "Like json, but with coffee script",
"homepage": "http://github.com/Squeegy/coffeeson.npm",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git://github.com/Squeegy/coffeeson.npm.git"
},
"bugs": {
"url": "http://github.com/Squeegy/coffeeson.npm/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://creativecommons.org/licenses/MIT/"
}
],
"keywords": [
"javascript",
"coffeescript",
"json",
"coffeeson"
],
"directories": {
"lib": "lib"
},
"main": "./lib/coffeeson",
"scripts": {
"test": "cake test"
},
"engines": {
"node": ">= 0.4.10"
},
"dependencies": {
"coffee-script": ">= 1.0.0"
},
"devDependencies": {
"mocha": ">= 0.9.0",
"should": ">= 0.5.0",
"sinon": ">= 1.3.1"
}
}