-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1014 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
{
"name": "jsengine",
"version": "1.0.0",
"description": "2d game engine",
"browserify": {
"transform": [
"coffeeify",
"jadeify"
]
},
"scripts": {
"start": "./node_modules/grunt-cli/bin/grunt start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jesper Sørensen",
"license": "MIT",
"dependencies": {
"browserify": "~10.2.4",
"coffeeify": "~1.0.0",
"grunt": "~0.4.5",
"grunt-browserify": "~3.5.0",
"grunt-cli": "~0.1.13",
"grunt-contrib-connect": "~0.9.0",
"grunt-contrib-jade": "~0.14.1",
"grunt-contrib-stylus": "~0.20.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-open": "~0.2.3",
"jade": "^1.9.2",
"jadeify": "~4.3.0"
},
"coffeelintConfig": {
"indentation" : {
"level" : "error",
"value" : 2
},
"line_endings" : {
"level" : "error",
"value" : "unix"
},
"max_line_length" : {
"level" : "error",
"value" : "100"
}
}
}