This repository has been archived by the owner on Feb 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 loc) · 3.17 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
{
"name": "swagger-ui-cimpress",
"description": "A swagger-ui fork with an easy to read, responsive three pane view. Used on developer.cimpress.io.",
"version": "3.2.0",
"license": "Apache-2.0",
"author": "Cimpress <support@cimpress.io> (https://github.com/Cimpress-MCP)",
"contributors": [
"Theo Pak <tpak@cimpress.com> (https://github.com/theopak)",
"Harsh Singh <harsingh@cimpress.com>"
],
"homepage": "https://github.com/Cimpress-MCP/swagger-ui-cimpress",
"repository": {
"type": "git",
"url": "https://github.com/Cimpress-MCP/swagger-ui-cimpress"
},
"scripts": {
"serve": "gulp serve",
"build": "gulp",
"write-version": "echo \"\n<script type='text/javascript'> window.version = {};\nwindow.version.commit = '`git rev-parse --short HEAD`';\nwindow.version.date = '`date`';\nwindow.version.npmVersion = '`npm -v`'; </script>\" >> ./dist/index.html",
"jshint": "./node_modules/.bin/jshint",
"test": "mocha --recursive --timeout 5000 --reporter spec",
"codecov": "istanbul cover ./node_modules/mocha/bin/_mocha . --report lcovonly -- -R spec --require source-map-support/register && codecov",
"deploy": "npm run build && npm run write-version && ./deploy.sh",
"deploy:integration": "SWAGGER_TARGET='s3://mcpportal.cloud.cimpress.io/env-integration/swagger-ui/' BACKUP_SWAGGER_TARGET='s3://mcpportal-backup.cloud.cimpress.io/env-integration/swagger-ui/' ./deploy.sh",
"deploy:staging": "SWAGGER_TARGET='s3://mcpportal.cloud.cimpress.io/env-staging/swagger-ui/' BACKUP_SWAGGER_TARGET='s3://mcpportal-backup.cloud.cimpress.io/env-staging/swagger-ui/' ./deploy.sh",
"deploy:production": "SWAGGER_TARGET='s3://mcpportal.cloud.cimpress.io/env-production/swagger-ui/' BACKUP_SWAGGER_TARGET='s3://mcpportal-backup.cloud.cimpress.io/env-production/swagger-ui/' ./deploy.sh"
},
"greenkeeper": {
"ignore": [
"jquery",
"jquery-migrate",
"swagger-client"
]
},
"dependencies": {
"backbone": "^1.3.3",
"bootstrap": "^3",
"clipboard": "^1.6.1",
"handlebars": "^4.0.6",
"jquery": "^1.12.4",
"jquery-migrate": "^1.4.1",
"marked": "^0.3.6",
"swagger-client": "^2.1.32",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "3.5",
"codecov": "2.1.0",
"cors": "^2.5.3",
"del": "^2.2.0",
"docco": "^0.7.0",
"event-stream": "^3.2.2",
"express": "4.15.2",
"gulp": "^3.8.11",
"gulp-clean-css": "3.0.4",
"gulp-concat": "2.6.1",
"gulp-connect": "^5",
"gulp-declare": "^0.3.0",
"gulp-handlebars": "4",
"gulp-if": "2.0.2",
"gulp-iife": "^0.3.0",
"gulp-rev": "^7.1.2",
"gulp-rev-replace": "^0.4.3",
"gulp-sourcemaps": "2.4.1",
"gulp-uglify": "2.1.2",
"gulp-watch": "^4.3.11",
"gulp-wrap": "^0.13.0",
"http-server": "0.9.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"karma": "1.5.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon-chai": "^1.2.4",
"less": "^2.7.2",
"mocha": "^3.2.0",
"selenium-webdriver": "3.3.0",
"sinon": "2.1.0",
"sinon-chai": "2.9.0",
"source-map-support": "0.4.14",
"stream-browserify": "^2.0.1"
}
}