forked from andrewminer/crafting-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "crafting-guide",
"version": "3.2.4",
"description": "A guide for building anything in Minecraft or its many mods",
"main": "./dist/index.js",
"repository": "http://github.com/andrewminer/crafting-guide",
"scripts": {
"build": "grunt build",
"prepublish": "grunt prepublish",
"start": "grunt start",
"test": "grunt test"
},
"author": "Andrew Miner",
"license": "none",
"devDependencies": {
"chai": "^1.10.0",
"coffee-script": "^1.9.3",
"coffeeify": "^1.1.0",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-compress": "^0.14.0",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-jade": "^0.15.0",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"grunt-sass-globbing": "^1.4.0",
"mocha": "^2.4.5",
"sass": "^0.5.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"backbone": "^1.2.3",
"body-parser": "^1.13.3",
"client-sessions": "^0.7.0",
"cookie-parser": "^1.3.5",
"crafting-guide-common": "^2.0.0",
"dotenv": "^2.0.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"jade": "^1.11.0",
"jquery": "^2.1.4",
"marked": "^0.3.5",
"underscore": "^1.8.3",
"underscore.inflections": "^0.2.1",
"when": "^3.7.3"
}
}