-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "ngx-cli-toolkit",
"version": "0.4.0",
"description": "A toolkit that helps with the setup and generation of schematics in projects.",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"test": "jest",
"release": "release-it"
},
"keywords": [
"angular",
"schematics",
"utilities"
],
"repository": {
"type": "git",
"url": "https://github.com/kroeder/ngx-cli-toolkit.git"
},
"author": "Kai Roeder",
"license": "MIT",
"schematics": "./src/collection.json",
"builders": "./src/builders.json",
"dependencies": {
"@angular-devkit/architect": "^0.1301.2",
"@angular-devkit/core": "^13.1.2",
"@angular-devkit/schematics": "^13.1.2",
"@schematics/angular": "^13.1.2",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.18.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"release-it": "^14.8.0",
"ts-jest": "^26.5.5",
"typescript": "~4.5.4"
}
}