-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
103 lines (103 loc) · 2.33 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"author": "Refael Ackermann<me@refack.com>",
"contributors": [
"Ishai Jaffe<ishai@bablic.com>",
"Etai Peretz<etaypere@gmail.com>",
"Alon Valadji<alon@ronin.co.il>"
],
"dependencies": {
"async": "^0.9.0",
"basic-auth": "^1.0.0",
"body-parser": "^1.9.0",
"cookie-session": "^1.0.2",
"debug": "^2.0.0",
"express": "^4.9.5",
"formage-mongoose-types": "1.0.1",
"lodash-contrib": "^241.4.14",
"lru-cache": "^2.5.0",
"mpromise": "^0.5.5",
"node-ckeditor": "^4.3.2",
"nodestrum": "^0.10.1",
"serve-static": "^1.6.3",
"socket.io": "^1.1.0"
},
"description": "Admin GUI addon for mongoose, jugglingdb, or just as a form generator",
"devDependencies": {
"bower": "",
"chai": "",
"grist": "latest",
"istanbul": "",
"jade": "0.35.x",
"jshint": "",
"jugglingdb": "",
"mocha": "",
"mongoose": "3.8.x",
"request": "^2.79.0"
},
"directories": {
"example": "./example"
},
"engines": {
"node": ">= 4"
},
"jshintConfig": {
"esnext": true,
"expr": true,
"forin": true,
"freeze": true,
"globals": {
"Promise": false,
"after": true,
"before": true,
"describe": true,
"expect": true,
"it": true
},
"immed": true,
"maxdepth": 4,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonew": true,
"noyield": true,
"scripturl": true,
"sub": true,
"supernew": true,
"trailing": true,
"undef": true,
"unused": true
},
"keywords": [
"admin",
"forms",
"cross-database",
"MongoDB",
"MongoDB-admin",
"MongoDB-GUI",
"grist",
"mongoose",
"mongoose-gui",
"juggling",
"jugglingdb",
"backoffice",
"cms"
],
"license": "MIT",
"main": "lib/Formage.js",
"name": "formage",
"publishConfig": {
"tag": "beta"
},
"repository": "node4good/formage",
"scripts": {
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -x generated/**",
"generate": "node utils/CompileTempletes.js",
"lint": "jshint .",
"mypublish": "npm run setassets && npm version patch && git push --follow-tags",
"setassets": "npm run generate && bower i && git clean -X -d -f assets",
"start": "node example/classic/app",
"test": "npm run generate && mocha"
},
"version": "3.3.0"
}