-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "angular-cli-hooks",
"author": "Albin Berglund",
"license": "MIT",
"version": "0.0.2",
"builders": "builders.json",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/blidblid/angular-cli-hooks"
},
"scripts": {
"build": "npx rimraf ./dist && tsc && yarn run build-assets",
"build-assets": "npx cpx ./README.md ./dist",
"postinstall": "node ./scripts/postinstall",
"test": "npx ts-node --project ./tsconfig.json ./node_modules/jasmine/bin/jasmine"
},
"peerDependencies": {
"@angular-devkit/architect": "*",
"@angular-devkit/build-angular": "*"
},
"dependencies": {
"@angular-devkit/architect": "^0.1802.2",
"@angular-devkit/build-angular": "^18.2.2",
"glob": "^7.2.0",
"json-schema-to-typescript": "^10.1.5",
"rxjs": "^7.8.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/jasmine": "^4.3.1",
"cpx": "^1.5.0",
"jasmine": "^5.2.0",
"prettier-plugin-organize-imports": "^4.0.0",
"rimraf": "^4.4.1",
"typescript": "^5.0.4"
}
}