-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
{
"name": "@ynnck/angular-schematics",
"version": "0.1.0",
"description": "repo for angular schematics",
"licenses": [
{
"type": "MIT"
}
],
"scripts": {
"build:dev": "npm run build -- -w",
"build": "tsc -p tsconfig.json",
"schematic": "func() { schematics .:\"$1\" \"$2\" --\"$3\" --\"$4\"; }; func",
"test": "npm run build && jasmine lib/**/*.spec.js",
"postbuild": "yarn copy:files && yarn copy:packagejson",
"rimraf": "rm -rf ./dist",
"clean": "yarn rimraf",
"copy:files": "copyfiles \"lib/**/files/**/*\" dist/",
"copy:readme": "copyfiles -u 1 \"lib/README.md\" dist/",
"copy:packagejson": "copyfiles \"package.json\" dist/",
"release": "npm run clean && npm run build && np",
"postversion": "yarn copy:readme && yarn copy:packagejson"
},
"keywords": [
"schematics"
],
"repository": {
"type": "git",
"url": "https://github.com/yackinn/angular-schematics.git",
"directory": "./dist"
},
"author": "",
"license": "MIT",
"schematics": "./lib/collection.json",
"dependencies": {
"@angular-devkit/core": "^13.3.0",
"@angular-devkit/schematics": "^13.3.0",
"np": "^7.6.1",
"typescript": "~4.6.2"
},
"devDependencies": {
"@types/jasmine": "~3.5.0",
"@types/node": "^16.11.26",
"copyfiles": "^2.2.0",
"jasmine": "^3.5.0"
},
"np": {
"contents": "dist",
"tests": false,
"yarn": false
}
}