-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "todomvc-reactive-aspen",
"version": "0.0.0",
"private": true,
"description": "TodoMVC structured with the Reactive-Aspen framework",
"engines": {
"node": "~0.10.24",
"npm": "2.3.x"
},
"main": "lib/initializer.js",
"repository": {
"type": "git",
"url": "https://github.com/matthew-hilty/todomvc-reactive-aspen.git"
},
"scripts": {
"build": "npm run bundle && npm run compile",
"bundle": "browserify -t coughify -t strictify --extension='.cough' src/initializer.cough | bundle-collapser - | uglifyjs -cm -o public/todoapp.js",
"compile": "cough --no-header -o lib/ -bc src/",
"devbuild": "npm run compile & npm run devbundle",
"devbundle": "browserify -t coughify -t strictify --extension='.cough' src/initializer.cough -o public/todoapp.js",
"start": "node server.js"
},
"keywords": [
"todomvc",
"reactive-aspen"
],
"author": "Matthew Hilty",
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.6",
"body-parser": "^1.11.0",
"cookie-parser": "~1.3.3",
"express": "~4.11.1",
"mongodb": "^1.4.30",
"pando": "~0.0.4",
"react": "~0.12.2",
"react-bridge": "~0.0.2",
"reactive-aspen": "~0.0.3",
"reactive-aspen-route": "~0.0.1"
},
"devDependencies": {
"browserify": "~8.1.1",
"bundle-collapser": "~1.1.1",
"cough-syrup": "0.0.1",
"coughify": "0.0.0",
"strictify": "^0.2.0",
"uglify-js": "~2.4.16"
}
}