-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 Bytes
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
{
"name": "@ktrdev2020/crud-schematic",
"version": "1.0.8",
"description": "Reusable Angular + Ionic NgRx CRUD schematic",
"schematics": "./dist/collection.json",
"main": "dist/index.js",
"keywords": [
"schematics",
"ngrx",
"crud",
"angular",
"ionic"
],
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && xcopy crud dist\\crud /E /I /Y && copy collection.json dist\\collection.json",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@angular-devkit/core": "^19.2.15",
"@angular-devkit/schematics": "^19.2.15",
"@types/node": "^20.11.30",
"typescript": "^5.3.3",
"rimraf": "^5.0.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}