forked from balderdashy/sails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (108 loc) · 2.67 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
104
105
106
107
108
109
{
"name": "sails",
"author": "Mike McNeil <[email protected]>",
"version": "0.10.0",
"description": "API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)",
"homepage": "http://sailsjs.org",
"keywords": [
"mvc",
"web-framework",
"express",
"sails",
"sailsjs",
"sails.js",
"REST",
"API",
"orm",
"socket.io"
],
"main": "./lib/index.js",
"bin": {
"sails": "./bin/sails.js"
},
"scripts": {
"test": "mocha",
"prepublish": "npm prune",
"pretest": "node test/.installDependencies"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"express": "3.4.3",
"rc": "~0.3.3",
"sails-stringfile": "~0.3.0",
"async": "~0.2.9",
"lodash": "~2.4.1",
"optimist": "~0.3.4",
"captains-log": "~0.11.1",
"reportback": "~0.1.4",
"sails-util": "~0.10.0",
"colors": "~0.6.2"
},
"optionalDependencies": {
"waterline": "git://github.com/balderdashy/waterline.git#v0.10",
"socket.io": "~0.9.14",
"connect-flash": "~0.1.1",
"pluralize": "~0.0.5",
"node-uuid": "~1.4.0",
"ejs-locals": "~1.0.2",
"glob": "~3.1.14",
"i18n": "~0.4.1",
"sails-generate": "~0.0.13",
"include-all": "~0.1.2",
"sails-build-dictionary": "0.1.0",
"connect-redis": "~1.4.5",
"connect-mongo": "~0.3.2",
"grunt-cli": "~0.1.11",
"ejs": "~0.8.4",
"sails-disk": "git://github.com/balderdashy/sails-disk.git#v0.10",
"commander": "~2.1.0",
"enpeem": "~0.1.1",
"grunt": "0.4.2",
"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.9.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-sync": "~0.0.4"
},
"testDependencies": {
"root-require": "~0.2.0",
"checksum": "~0.1.1",
"request": "*",
"wrench": "~1.5.1",
"benchmark": "~1.0.0",
"microtime": "~0.5.1",
"colors": "~0.6.2",
"expect.js": "~0.2.0",
"should": "~2.1.1",
"supertest": "~0.8.2",
"fs-extra": "~0.8.1",
"socket.io-client": "~0.9.16"
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails.git#v0.10"
},
"licenses": [
{
"type": "MIT",
"url": "http://links.sailsjs.org/license/mit"
}
],
"bugs": {
"url": "http://github.com/balderdashy/sails/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"sails": {
"prerelease": "git://github.com/balderdashy/sails.git#v0.10"
}
}