-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.78 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
{
"name": "plugCubed-web",
"description": "Website for plug3",
"version": "2.0.3",
"author": "Thedark1337 <[email protected]> (https://thedark1337.com)",
"contributors": [
{
"name": "James Blaik",
"email": "[email protected]"
},
{
"name": "Thomas Andresen",
"email": "[email protected]"
},
{
"name": "Sam Mills",
"email": "[email protected]"
}
],
"dependencies": {
"chalk": "^1.1.3",
"he": "^1.1.0",
"jethro": "^2.7.1",
"jethro-koa": "github:thedark1337/jethro-koa",
"koa": "^1.2.4",
"koa-bodyparser": "^2.2.0",
"koa-conditional-get": "^1.0.3",
"koa-ejs": "^3.0.0",
"koa-etag": "^2.1.1",
"koa-file-server": "^2.3.1",
"koa-i18n": "^1.2.0",
"koa-locale": "^1.2.0",
"koa-router": "^5.4.0",
"koa-x-request-id": "^1.1.0",
"moment": "^2.15.1",
"netjet": "^1.1.3",
"raven": "^0.12.1",
"url": "^0.11.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"eslint-config-thedark1337": "^3.0.0",
"is-ci": "^1.0.8",
"istanbul": "^0.4.5",
"jspm": "^0.16.45",
"mocha": "^3.0.2",
"mocha-eslint": "^3.0.1",
"supertest": "^2.0.0"
},
"engines": {
"node": ">=4.0"
},
"homepage": "https://plugcubed.net",
"jspm": {
"directories": {
"baseURL": "public"
},
"dependencies": {
"bootstrap": "github:twbs/bootstrap@^3.3.6",
"clean-css": "npm:clean-css@^3.4.8",
"css": "github:systemjs/plugin-css@^0.1.23",
"font-awesome": "npm:font-awesome@^4.6.3",
"jquery": "github:components/jquery@^2.2.4",
"jquery.event.move": "github:stephband/jquery.event.move@^1.3.6",
"jquery.magnific-popup": "github:dimsemenov/Magnific-Popup@^1.1.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.38",
"babel-runtime": "npm:babel-runtime@^5.8.38",
"core-js": "npm:core-js@^1.2.6"
},
"overrides": {
"github:stephband/[email protected]": {
"main": "js/jquery.event.move.js"
}
}
},
"keywords": [
"jethro",
"koajs",
"plug3",
"plugcubed",
"plugdj",
"scripts",
"website"
],
"license": "GPL-3.0",
"main": "index.js",
"private": true,
"scripts": {
"build": "jspm bundle-sfx js/bundle.orig.js public/js/bundle.js --minify && jspm bundle-sfx js/mackbethTheme.orig.js public/js/mackbethTheme.js --minify",
"coverage": "NODE_ENV=test istanbul cover _mocha --report lcovonly -- -R spec && codecov",
"postinstall": "[ \"$NODE_ENV\" != test ] && jspm install && jspm bundle-sfx js/bundle.orig.js public/js/bundle.js --minify && jspm bundle-sfx js/mackbethTheme.orig.js public/js/mackbethTheme.js --minify || exit 0",
"start": "node index.js",
"test": "export NODE_ENV=test || set NODE_ENV=test && mocha"
}
}