-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "ng-cli-hooks",
"version": "16.0.0",
"main": "dist",
"builders": "builders.json",
"description": "Hooks for the Angular CLI",
"scripts": {
"build": "rimraf dist && tsc && node create-schemas.js",
"prepare": "npm run build",
"install": "node create-schemas.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartin85/ng-cli-hooks.git"
},
"keywords": [
"ng",
"angular",
"cli",
"angular-cli",
"builder",
"webpack",
"options",
"hook",
"hooks"
],
"author": "Smartin Nematronic",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartin85/ng-cli-hooks/issues"
},
"homepage": "https://github.com/smartin85/ng-cli-hooks#readme",
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.1",
"@types/node": "16.18.36",
"rimraf": "5.0.1",
"typescript": "~5.1.3"
},
"dependencies": {
"lodash": "^4.17.20"
},
"peerDependencies": {
"@angular-devkit/build-angular": "^16.1.1"
},
"files": [
"dist",
"create-schemas.js",
"builders.json",
"src/**/schema.json"
]
}