forked from Strider-CD/strider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
167 lines (167 loc) · 5.41 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "strider",
"version": "1.9.6",
"bin": {
"strider": "bin/strider"
},
"main": "main.js",
"description": "Brilliant continuous deployment platform",
"license": "BSD-3-Clause",
"keywords": [
"strider",
"continuous integration",
"continuous deployment",
"testing",
"deployment"
],
"engines": {
"node": ">=4.2",
"npm": ">=2.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/Strider-CD/strider.git"
},
"browser": {
"bootstrap": "./vendor/bootstrap/js/bootstrap.js",
"sortable": "./vendor/Sortable/js/Sortable.js",
"bootbox": "./vendor/bootbox/js/bootbox.js",
"codemirror": "./vendor/CodeMirror/js/codemirror.js",
"codemirror-shell": "./vendor/CodeMirror/js/shell.js",
"timeago": "./vendor/jquery-timeago/js/jquery.timeago.js",
"ui-codemirror": "./public/libs/ui-codemirror.js",
"ui-bootstrap": "./public/libs/ui-bootstrap.js"
},
"browserify-shim": "./shim.js",
"browserify": {
"transform": [
"browserify-shim"
]
},
"scripts": {
"test": "npm run build && npm run lint && npm run test-unit",
"start": "bin/strider",
"dev": "npm run build-debug && bin/strider",
"pre": "mkdirp dist/scripts dist/styles",
"vendor": "bower-installer",
"styles": "lessc client/styles/strider.less > dist/styles/styles.css",
"styles-debug": "lessc --source-map client/styles/strider.less dist/styles/styles.css",
"watch": "npm run pre && watchify -e client/app.js -o dist/scripts/app.js",
"build": "npm run pre && npm run styles && browserify -d -t [babelify --presets [ es2015 ] --only client] -p [minifyify --output dist/scripts/bundle.map] -e client/app.js -o dist/scripts/app.js",
"build-debug": "npm run pre && npm run styles-debug && browserify -d -t [babelify --presets [ es2015 ] --only client] -e client/app.js -o dist/scripts/app.js",
"test-unit": "mocha --recursive test/unit",
"lint": "eslint *.js bin lib client",
"unitcov": "istanbul cover ./node_modules/mocha/bin/_mocha --recursive test/unit",
"api-docs": "apidoc -i lib/ -o apidocs/",
"api-docs:md": "apidoc-markdown -p apidocs -o docs/api.md",
"docs:build": "docpress b",
"docs:publish": "git-update-ghpages -b master Strider-CD/strider-cd.github.com _docpress",
"deploy:docs": "npm run api-docs:md && npm run docs:build && npm run docs:publish",
"debug": "node --inspect bin/strider --no-cluster",
"release": "standard-version",
"prepublish": "in-publish && npm run build || not-in-publish",
"postinstall": "opencollective postinstall"
},
"dependencies": {
"activedirectory": "^0.7.2",
"ansi_up": "^1.3.0",
"async": "^2.0.1",
"bcryptjs": "^2.1.0",
"bluebird": "^3.4.1",
"body-parser": "^1.10.0",
"chalk": "^1.1.3",
"co-router": "^1.0.3",
"compression": "^1.2.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"connect-slashes": "^1.3.1",
"cookie-parser": "^1.3.3",
"cors": "^2.5.2",
"debug": "^2.2.0",
"errorhandler": "^1.3.0",
"everypaas": "0.0.8",
"express": "^4.10.6",
"express-session": "^1.9.3",
"global-tunnel": "^1.2.0",
"gravatar": "^1.1.0",
"in-publish": "^2.0.0",
"lodash": "^4.14.0",
"md5": "^2.0.0",
"method-override": "^2.3.0",
"mongoose": "^4.7.6",
"morgan-debug": "^2.0.0",
"node-rsa": "^0.4.0",
"opencollective": "^1.0.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path-to-regexp": "^1.0.2",
"pug": "^2.0.0-beta4",
"rc": "^1.0.3",
"request": "^2.81.0",
"semver": "^5.3.0",
"serve-favicon": "^2.2.0",
"socket.io": "^2.0.1",
"socket.io-client": "^2.0.1",
"sshpk": "^1.8.3",
"step": "^1.0.0",
"strider-bitbucket": "^1.2.0",
"strider-build-badge": "^0",
"strider-cli": "^2.0.0",
"strider-custom": "^0.6.0",
"strider-ecosystem-client": "^1.2.1",
"strider-email-notifier": "^1.0.0",
"strider-env": "^0.5.1",
"strider-extension-loader": "^0.4.5",
"strider-git": "^1.0.0",
"strider-github": "^2.3.0",
"strider-gitlab": "^1.2.3",
"strider-heroku": "^0.1.1",
"strider-mailer": "^0.2.0",
"strider-metadata": "^0.0.3",
"strider-node": "^1.0.0",
"strider-python": "^0.2.1",
"strider-ruby": "^0.0.2",
"strider-simple-runner": "^1.0.0",
"strider-slack": "^2.0.0",
"strider-ssh-deploy": "^1.0.0",
"swig": "^0.14.0",
"thirty-two": "^1.0.1",
"validator": "^7.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"angular": "1.5.7",
"angular-route": "1.5.7",
"apidoc": "^0.16.1",
"apidoc-markdown": "github:zambonilli/node-apidoc-markdown",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"bower-installer": "^1.2.0",
"browserify": "^13.0.1",
"browserify-shim": "^3.8.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"docpress": "0.7.1",
"eslint": "^3.0.1",
"expect.js": "^0.3.1",
"git-update-ghpages": "^1.3.0",
"httpcheck": "^0.3.0",
"istanbul": "^0.4.4",
"jquery": "^2.2.4",
"less": "^2.2.0",
"minifyify": "^7.3.3",
"mkdirp": "^0.5.0",
"mocha": "^3.0.0",
"node-mocks-http": "^1.2.4",
"sinon": "^1.10.3",
"standard-version": "^4.0.0",
"surge": "^0.18.0",
"watchify": "^3.4.0",
"wd": "^0.4.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/strider",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}