-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "misojs",
"version": "0.0.12",
"private": false,
"scripts": {
"development": "touch -t 197804100000.00 system/main.js && nodemon -e js,css,json --watch package.json --watch system/ --watch cfg/ --watch mvc/ --watch client/ --watch server/ --watch app.js app.js",
"developmentforever": "touch -t 197804100000.00 system/main.js && nodemon --exitcrash -e js,css,json --watch package.json --watch system/ --watch cfg/ --watch mvc/ --watch client/ --watch server/ --watch app.js app.js",
"production": "touch -t 197804100000.00 system/main.js && node app.js"
},
"bin": {
"miso": "bin/miso.bin.js"
},
"dependencies": {
"body-parser": "^1.10.2",
"browserify": "^8.1.0",
"browserify-transform-tools": "^1.3.0",
"express": "~4.10.6",
"express-session": "^1.10.2",
"flat-file-db": "^0.1.3",
"fs-extra": "^0.14.0",
"grunt": "*",
"js-beautify": "^1.5.4",
"lodash": ">=2.4.1",
"marked": "^0.3.3",
"minifyify": "^6.1.1",
"minimist": "^1.1.0",
"mithril": "*",
"mithril-node-render": "0.2.2",
"mithril.sugartags": "0.0.5",
"node-uuid": "^1.4.2",
"nodemon": "^1.3.5",
"npm": "~2.1.16",
"promiz": "^1.0.3",
"sockjs": "0.3.12",
"validator": "^3.27.0",
"validator.modelbinder": "0.0.2"
},
"description": "MISOJS (Mithril ISOmorphic JavaScript) is a node.js and mithril based MVC implementation that provides an isomorphic environment to create apps quickly.",
"main": "app.js",
"directories": {
"test": "test"
},
"devDependencies": {
"mocha": "~2.0.1",
"reload": "^0.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jsguy/misojs.git"
},
"keywords": [
"mithril",
"isomorphic",
"framework",
"mvc",
"useful",
"jsguy"
],
"author": "Mikkel Bergmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsguy/misojs/issues"
},
"browser": {
"./system/api.server.js": "./system/api.client.js",
"./server/miso.util.js": "./client/js/miso.util.js"
},
"homepage": "https://github.com/jsguy/misojs"
}