-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
39
40
41
42
{
"name": "@ppwcode/angular-schematics",
"version": "4.0.0",
"description": "PPWCode Angular Schematics",
"scripts": {
"build": "npm run build:compile && npm run build:copy",
"build:compile": "tsc -p tsconfig.json",
"build:copy": "copyfiles -a -u 1 ./src/*.json ./src/**/*.template ./src/**/*.json dist && copyfiles package.json README.md dist",
"test": "npm run build && jasmine dist/**/*.spec.js"
},
"keywords": [
"schematics"
],
"author": {
"name": "Adriaan Peeters",
"email": "adriaan_peeters@peopleware.be"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/peopleware/angular-ppwcode-schematics.git"
},
"schematics": "./collection.json",
"dependencies": {
"@angular-devkit/core": "^13.3.1",
"@angular-devkit/schematics": "^13.3.1",
"@angular/cdk": "^13.3.2",
"@angular/common": "^13.3.1",
"@angular/core": "^13.3.1",
"@schematics/angular": "^13.3.1",
"@types/lodash": "^4.14.181",
"lodash": "^4.17.21",
"typescript": "~4.6.3",
"zone.js": "^0.11.5"
},
"devDependencies": {
"@types/jasmine": "~4.0.2",
"@types/node": "^16.11.7",
"copyfiles": "^2.4.1",
"jasmine": "^4.0.2"
}
}