forked from balderdashy/sails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.96 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
{
"name": "sails",
"author": "Mike McNeil <[email protected]>",
"version": "0.9.8",
"description": "API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)",
"homepage": "http://sailsjs.com",
"keywords": [
"mvc",
"web-framework",
"express",
"sails",
"sailsjs",
"sails.js",
"REST",
"API",
"orm",
"socket.io"
],
"main": "./lib/index",
"bin": {
"sails": "./bin/sails.js"
},
"scripts": {
"test": "mocha"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"waterline": "~0.9.4",
"sails-disk": "~0.9.0",
"express": "3.4.0",
"socket.io": "0.9.14",
"connect-redis": "1.4.5",
"connect-mongo": "0.3.2",
"async": "0.2.9",
"winston": "0.7.1",
"i18n": "0.4.1",
"optimist": "0.3.4",
"fs-extra": "0.5.0",
"lodash": "2.4.1",
"glob": "3.1.14",
"underscore.string": "2.3.0",
"include-all": "0.1.2",
"inflection": "1.2.5",
"node-uuid": "1.4.0",
"grunt": "0.4.1",
"grunt-cli": "0.1.9",
"grunt-contrib-copy": "0.4.1",
"grunt-contrib-clean": "0.4.1",
"grunt-contrib-concat": "0.3.0",
"grunt-sails-linker": "0.9.5",
"grunt-contrib-jst": "0.5.0",
"grunt-contrib-watch": "0.4.4",
"grunt-contrib-uglify": "0.2.2",
"grunt-contrib-cssmin": "0.6.1",
"grunt-contrib-less": "0.5.2",
"grunt-contrib-coffee": "~0.7.0",
"ejs": "0.8.4",
"ejs-locals": "1.0.2",
"connect-flash": "0.1.1",
"pluralize": "0.0.5"
},
"devDependencies": {
"mocha": "*",
"request": "*",
"wrench": "~1.5.1"
},
"optionalDependencies": {
"coffee-script": "1.6.2"
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://sails.mit-license.org/"
}
],
"bugs": {
"url": "http://github.com/balderdashy/sails/issues"
},
"engines": {
"node": ">= 0.10.0"
}
}