-
Notifications
You must be signed in to change notification settings - Fork 2k
/
package.json
106 lines (106 loc) · 2.81 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
{
"name": "sails",
"author": "Mike McNeil <@mikermcneil>",
"version": "1.5.12",
"description": "API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)",
"license": "MIT",
"homepage": "https://sailsjs.com",
"keywords": [
"mvc",
"web-framework",
"express",
"sailsjs",
"sails.js",
"REST",
"API",
"orm",
"socket.io"
],
"bin": {
"sails": "./bin/sails.js"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.4.0"
},
"dependencies": {
"@sailshq/lodash": "^3.10.6",
"@sailshq/router": "^1.3.9",
"async": "2.6.4",
"captains-log": "^2.0.5",
"chalk": "2.3.0",
"commander": "2.11.0",
"common-js-file-extensions": "1.0.2",
"compression": "1.7.1",
"connect": "3.6.5",
"cookie": "0.4.0",
"cookie-parser": "1.4.4",
"cookie-signature": "1.1.0",
"csurf": "1.10.0",
"ejs": "3.1.10",
"express": "4.21.0",
"express-session": "1.17.0",
"flaverr": "^1.10.0",
"glob": "7.1.2",
"i18n-2": "0.7.3",
"include-all": "^4.0.0",
"machine": "^15.2.2",
"machine-as-action": "^10.3.1",
"machinepack-process": "^4.0.1",
"machinepack-redis": "^2.0.2",
"merge-defaults": "0.2.2",
"merge-dictionaries": "1.0.0",
"minimist": "1.2.6",
"parley": "^3.3.4",
"parseurl": "1.3.2",
"path-to-regexp": "1.9.0",
"pluralize": "1.2.1",
"prompt": "1.2.1",
"rc": "1.2.8",
"rttc": "^10.0.0-0",
"sails-generate": "^2.0.11",
"sails-stringfile": "^0.3.3",
"semver": "7.5.2",
"serve-favicon": "2.4.5",
"serve-static": "1.16.2",
"skipper": "^0.9.5",
"sort-route-addresses": "^0.0.4",
"uid-safe": "2.1.5",
"vary": "1.1.2",
"whelk": "^6.0.1"
},
"devDependencies": {
"benchmark": "^2.1.2",
"connect-redis": "3.3.2",
"eslint": "5.16.0",
"expect.js": "0.3.1",
"fs-extra": "4.0.2",
"machinepack-fs": "^8.0.2",
"mocha": "3.0.2",
"nunjucks": "3.0.1",
"portfinder": "1.0.13",
"@sailshq/request": "2.88.3",
"root-require": "0.3.1",
"sails-hook-orm": "^4.0.2",
"sails-hook-sockets": "^3.0.0",
"sails.io.js": "^1.0.0",
"session-file-store": "1.1.2",
"should": "9.0.0",
"socket.io-client": "2.0.3",
"supertest": "1.1.0",
"tmp": "0.0.29"
},
"bugs": {
"url": "http://sailsjs.com/bugs"
},
"scripts": {
"test": "nodever=`node -e \"console.log('\\`node -v\\`'[1]);\"` && if [ $nodever != \"0\" ]; then npm run lint; fi && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha -b",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --ignore-pattern 'test/' --ignore-pattern 'testApp/'"
},
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails.git"
}
}