-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
67 lines (67 loc) · 2.34 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
{
"name": "rootpanel",
"version": "0.8.0",
"description": "A pluggable PaaS service development framework",
"homepage": "https://rootpanel.io",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/jysperm/RootPanel.git"
},
"contributors": [
{
"name": "jysperm",
"email": "jysperm@gmail.com",
"url": "https://jysperm.me"
}
],
"scripts": {
"start": "./node_modules/.bin/coffee app.coffee",
"migrate": "./node_modules/.bin/coffee bin/migrate.coffee",
"reconfigure": "./node_modules/.bin/coffee bin/reconfigure.coffee",
"test": "COV_TEST=true ./node_modules/.bin/mocha --compilers coffee:coffee-script/register --require test/env --reporter node_modules/mocha-reporter-cov-summary -- core/test/*.test.coffee core/test/*/*.test.coffee plugin/*/test",
"test-only": "./node_modules/.bin/mocha --compilers coffee:coffee-script/register --require test/env -- core/test/*.test.coffee core/test/*/*.test.coffee plugin/*/test",
"test-full": "./node_modules/.bin/coffee test/full-test.coffee",
"test-cov-html": "COV_TEST=true ./node_modules/.bin/mocha --compilers coffee:coffee-script/register --require test/env --reporter html-cov -- core/test/*.test.coffee core/test/*/*.test.coffee plugin/*/test > coverage-reporter.html"
},
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.9.0",
"coffee-script": "^1.7.1",
"connect-redis": "^2.0.1",
"cookie-parser": "^1.3.3",
"copy-to": "^1.0.1",
"counter-cache": "^0.1.0",
"csrf": "^2.0.1",
"deepmerge": "^0.2.7",
"depd": "^1.0.0",
"express": "^4.8.4",
"express-session": "^1.8.2",
"harp": "^0.13.0",
"jade": "^1.3.1",
"json-stable-stringify": "^1.0.0",
"markdown": "^0.5.0",
"middleware-injector": "^0.1.1",
"moment-timezone": "^0.2.2",
"mongodb": "^1.4.8",
"mongoose": "^3.8.17",
"mongoose-unique-validator": "^0.4.1",
"morgan": "^1.3.2",
"mysql": "^2.4.2",
"negotiator": "^0.4.8",
"nodemailer": "^1.2.1",
"redis": "^0.12.1",
"request": "^2.45.0",
"tmp": "^0.0.24",
"underscore": "^1.6.0",
"semver": "^4.1.0",
"get-parameter-names": "^0.2.0"
},
"devDependencies": {
"mocha": "^2.0.0",
"chai": "^1.9.2",
"coffee-coverage": "^0.4.2",
"supertest": "^0.14.0",
"mocha-reporter-cov-summary": "^0.1.0"
}
}