-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "openapi-link-generator",
"version": "0.1.3",
"description": "A Tool to add link definitions to an OpenAPI documentation",
"main": "./dist/link-generator.js",
"types": "./dist/link-generator.d.ts",
"files": [
"/dist"
],
"scripts": {
"start": "npm run build && node ./dist/index.js",
"build": "tsc",
"test": "jest",
"dev": "nodemon --watch \"src/**/*.ts\" --ignore \"src/**/*.spec.ts\" --exec \"npm run start --\" -e ts",
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier": "prettier --write \"**/*.js\" \"**/*.ts\" \"**/*.md\" \"**/*.json\" \"**/*.yaml\"",
"pretty-quick": "pretty-quick --staged --pattern \"**/*.js\" --pattern \"**/*.ts\" --pattern \"**/*.md\" --pattern \"**/*.json\" --pattern \"**/*.yaml\"",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rwth-acis/openapi-link-generator.git"
},
"keywords": [
"openapi"
],
"author": "Dominik Kus",
"license": "MIT",
"bugs": {
"url": "https://github.com/rwth-acis/openapi-link-generator/issues"
},
"homepage": "https://github.com/rwth-acis/openapi-link-generator#readme",
"dependencies": {
"lodash": "^4.17.15",
"loglevel": "^1.6.7",
"oas-validator": "^3.4.0",
"openapi-types": "^1.3.5",
"swagger2openapi": "^5.4.0",
"yaml": "^1.8.3",
"yargs": "^13.3.2"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.34",
"@types/yaml": "^1.2.0",
"@types/yargs": "^13.0.8",
"husky": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick && npm run lint && npm test"
}
},
"bin": {
"openapi-link-generator": "./dist/index.js"
}
}