forked from Redocly/redoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.81 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.81 KB
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
{
"name": "redoc",
"description": "Swagger-generated API Reference Documentation",
"version": "1.21.2",
"repository": {
"type": "git",
"url": "git://github.com/Rebilly/ReDoc"
},
"engines": {
"node": ">=6.9",
"npm": ">=3.0.0"
},
"main": "dist/redoc.module.js",
"module": "dist/redoc.module.js",
"types": "dist/redoc.module.d.ts",
"scripts": {
"start": "webpack-dev-server --config build/webpack.dev.js --content-base demo",
"start:prod": "NODE_ENV=production npm start",
"test": "npm run lint && node ./build/run_tests.js",
"lint": "tslint -e \"lib/**/*{ngfactory|css.shim}.ts\" lib/**/*.ts",
"unit": "karma start",
"pree2e": "npm run build:prod && npm run e2e-copy",
"e2e": "run-p -r protractor e2e-server",
"protractor": "protractor",
"preprotractor": "npm run webdriver",
"e2e-server": "http-server -p 3000 tests/e2e",
"e2e-copy": "cp dist/redoc.min.js tests/e2e/",
"webdriver": "webdriver-manager update",
"deploy": "node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo",
"branch-release": "git reset --hard && branch-release",
"clean": "rimraf dist .tmp compiled lib/**/*.css",
"ngc": "ngc -p tsconfig.json",
"inline": "ng2-inline -o .tmp -r --compress \"lib/**/*.ts\"",
"build:module": "npm run build:sass && npm run inline && ngc -p tsconfig.aot.json && npm run module:css",
"module:css": "node build/join-module-css.js",
"webpack:prod": "webpack --config build/webpack.prod.js --profile --bail",
"build:sass": "node-sass -q -o lib lib",
"build:prod": "npm run build:sass && npm run ngc && npm run webpack:prod",
"build-dist": "npm run build:prod",
"build:all": "npm run clean && npm run build:prod && npm run build:module",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"stats": "webpack --config build/webpack.prod.js --json > stats.json"
},
"keywords": [
"OpenAPI",
"OpenAPI Specification",
"Swagger",
"JSON-Schema",
"API",
"REST",
"documentation",
"Angular 2"
],
"author": "Roman Hotsiy",
"license": "MIT",
"devDependencies": {
"@angular/common": "^4.4.3",
"@angular/compiler": "^4.4.3",
"@angular/compiler-cli": "^4.4.3",
"@angular/core": "^4.4.3",
"@angular/platform-browser": "^4.4.3",
"@angular/platform-browser-dynamic": "^4.4.3",
"@angular/platform-server": "^4.4.3",
"@types/jasmine": "^2.6.0",
"@types/requirejs": "^2.1.31",
"@types/should": "^11.2.0",
"@types/swagger-schema-official": "^2.0.6",
"@types/webpack": "^3.0.11",
"angular2-inline-template-style": "^1.1.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.2.3",
"chalk": "^2.1.0",
"codelyzer": "^3.2.0",
"conventional-changelog-cli": "^1.3.3",
"css-loader": "^0.28.7",
"deploy-to-gh-pages": "^1.3.3",
"exports-loader": "^0.6.4",
"http-server": "^0.10.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.4",
"karma-remap-coverage": "^0.1.4",
"karma-should": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"protractor": "^5.1.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"rxjs": "^5.4.3",
"sass-loader": "^6.0.6",
"shelljs": "^0.7.7",
"should": "^13.1.0",
"sinon": "^3.3.0",
"source-map-loader": "^0.2.1",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^0.18.2",
"swagger-schema-official": "^2.0.0-bab6bed",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0"
},
"peerDependencies": {
"@angular/common": "^4.1.1",
"@angular/compiler": "^4.1.1",
"@angular/compiler-cli": "^4.1.1",
"@angular/core": "^4.1.1",
"@angular/forms": "^4.1.1",
"@angular/platform-browser": "^4.1.1",
"@angular/platform-browser-dynamic": "^4.1.1",
"@angular/platform-server": "^4.1.1",
"core-js": "^2.4.1",
"rxjs": "^5.3.1"
},
"dependencies": {
"core-js": "^2.5.1",
"dropkickjs": "~2.1.10",
"hint.css": "^2.3.2",
"https-browserify": "^1.0.0",
"json-pointer": "^0.6.0",
"json-schema-ref-parser": "^3.3.1",
"lunr": "^1.0.0",
"mark.js": "^8.11.1",
"openapi-sampler": "1.0.0-beta.8",
"perfect-scrollbar": "^0.8.1",
"prismjs": "^1.8.1",
"remarkable": "1.7.1",
"scrollparent": "^2.0.1",
"slugify": "^1.2.1",
"stream-http": "^2.6.1",
"ts-helpers": "^1.1.2",
"zone.js": "^0.8.17"
}
}