-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "chimp-datasources-generator",
"version": "0.0.0-development",
"description": "Helper that autogenerates DataSource-compatible APIs per controller for a given microservice, based on OpenAPI/Swagger specification",
"bin": "lib/chimp-datasources-generator.js",
"scripts": {
"test": "jest",
"lint": "eslint \"lib/**/*.js\" --quiet",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/xolvio/chimp-datasources-generator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xolvio/chimp-datasources-generator/issues"
},
"homepage": "https://github.com/xolvio/chimp-datasources-generator#readme",
"dependencies": {
"commander": "^6.1.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"semantic-release": "^17.1.2"
}
}