-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.patch
39 lines (39 loc) · 1.03 KB
/
package.patch
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
--- package.json 2022-11-14 12:58:15.000000000 -0500
+++ packageu.json 2022-11-14 12:57:53.000000000 -0500
@@ -14,20 +14,34 @@
"openapi-generator",
"@dariusbakunas/eve-esi-client"
],
- "license": "Unlicense",
+ "license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"sideEffects": false,
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
- "prepare": "npm run build"
+ "prettier": "prettier --write .",
+ "commit": "cz"
},
"dependencies": {
"axios": "^0.26.1"
},
"devDependencies": {
+ "@commitlint/cli": "^17.2.0",
+ "@commitlint/config-conventional": "^17.2.0",
"@types/node": "^12.11.5",
+ "commitizen": "^4.2.5",
+ "cz-conventional-changelog": "^3.3.0",
+ "husky": "^8.0.2",
+ "npm-run-all": "^4.1.5",
+ "prettier": "2.7.1",
+ "release-please": "^14.17.0",
"typescript": "^4.0"
+ },
+ "config": {
+ "commitizen": {
+ "path": "./node_modules/cz-conventional-changelog"
+ }
}
}