-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.53 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ngvm",
"version": "0.0.7",
"description": "Angular CLI Version Manager",
"main": "index.js",
"lint-staged": {
"{src,__mocks__,bin}/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"scripts": {
"build": "tsc",
"build:clean": "ts-node _post_build.ts",
"release": "rm -rf ./dist && npm run build && npm run build:clean",
"commit": "git-cz",
"start": "NODE_ENV=dev node -r ts-node/register ./src/bin/ngvm.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"check:prettier": "prettier --list-different '{src,__mocks__,bin}/**/*.ts'",
"check:eslint": "eslint '{src,__mocks__,bin}/**/*.ts'",
"fix:prettier": "prettier --write '{src,__mocks__,bin}/**/*.ts'",
"fix:eslint": "eslint --fix '{src,__mocks__,bin}/**/*.ts'",
"bump-version": "rjp package.json version $VERSION",
"report:coverage": "npm run test:coverage && codecov",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"bin": {
"ngvm": "./src/bin/ngvm.js",
"order": "./src/bin/order.bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/angularconsulting/ngvm.git"
},
"keywords": [
"angular",
"angular-cli",
"angular-consulting",
"kuncevic",
"dev-tools"
],
"author": "Angular Consulting",
"license": "MIT",
"bugs": {
"url": "https://github.com/angularconsulting/ngvm/issues"
},
"homepage": "https://github.com/angularconsulting/ngvm#readme",
"dependencies": {
"commander": "^10.0.0",
"open": "^8.4.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/prompt": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"codecov": "^3.1.0",
"commitizen": "^4.3.0",
"eslint": "^8.34.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"replace-json-property": "^1.8.0",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}