forked from peopleware/angular-ppwcode-schematics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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": "@ppwcode/angular-schematics",
"version": "3.1.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": "^12.0.4",
"@angular-devkit/schematics": "^12.0.4",
"@schematics/angular": "^12.0.4",
"@types/lodash": "^4.14.161",
"lodash": "^4.17.20",
"typescript": "~4.1.5"
},
"devDependencies": {
"@types/node": "^12.11.1",
"@types/jasmine": "~3.6.0",
"copyfiles": "^2.2.0",
"jasmine": "^3.6.0"
}
}