-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "casto",
"version": "0.2.1",
"description": "Live coding in browse, using text editor.",
"main": "index.js",
"scripts": {
"test": "npm run test-unit",
"test-unit": "mocha --ui bdd --reporter spec ./test/app --recursive --require ./test/helper.js",
"start": "grunt server",
"postinstall": "test -f ../../package.json && npm install ../../ || echo",
"postupdate": "test -f ../../package.json && npm install ../../ || echo",
"compile": "grunt compile"
},
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.12.0",
"compression": "^1.4.1",
"express": "^4.12.0",
"handlebars": "^2.0.0",
"jquery": "^2.1.3",
"morgan": "^1.5.1",
"rendr": "^1.0.1",
"rendr-handlebars": "^2.0.0",
"serve-static": "^1.9.1",
"underscore": "^1.8.2",
"forever": "~0.10.11",
"config": "~0.4.35"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-browserify": "~1.2.12",
"grunt-contrib-stylus": "~0.20.0",
"grunt-contrib-handlebars": "~0.9.3",
"grunt-contrib-watch": "~0.6.1",
"mocha": "~2.1.0",
"nodemon": "^0.7.10",
"chai": "~2.1.0",
"karma": "~0.12.31",
"karma-chrome-launcher": "~0.1.7",
"karma-mocha": "~0.1.10",
"should": "~3.2.0-beta1"
},
"engines": {
"node": ">=0.10"
},
"private": true
}