-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "express-swagger-delta",
"description": "Using Express with Swagger",
"homepage": "https://github.com/donatocardoso/express-swagger#readme",
"keywords": [
"api",
"node",
"express",
"swagger",
"jest",
"prettier"
],
"author": "Donato Cardoso Ávila",
"license": "MIT",
"version": "1.4.0",
"main": "./dist/index.js",
"types": "types",
"repository": {
"type": "git",
"url": "git+https://github.com/donatocardoso/express-swagger-delta.git"
},
"bugs": {
"url": "https://github.com/donatocardoso/express-swagger-delta/issues"
},
"scripts": {
"tsc": "tsc -p ./",
"start": "nodemon -r esm ./example/api.js",
"pretest": "rm -fr ./__tests__/coverage && npm run tsc",
"test": "jest --coverage --runInBand --detectOpenHandles",
"posttest": "jest-coverage-badges --input ./__tests__/coverage/coverage-summary.json --output ./__tests__/badges",
"clean": "rm -fr ./node_modules ./__tests__/coverage package-lock.json yarn.lock"
},
"dependencies": {
"@types/cli-color": "^2.0.0",
"@types/express": "^4.17.11",
"@types/swagger-schema-official": "^2.0.21",
"@types/swagger-ui-express": "^4.1.2",
"cli-color": "^2.0.0",
"express": "^4.17.1",
"swagger-schema-official": "^2.0.0-bab6bed",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@sucrase/jest-plugin": "^2.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"esm": "^3.2.25",
"helmet": "^4.4.1",
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"supertest": "^6.1.3",
"typescript": "^4.2.3"
}
}