-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 877 Bytes
/
package.json
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
{
"name": "ng-builder-file-remover",
"description": "Angular 8+ builder for removing files",
"author": "Bojan Kogoj",
"version": "13.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:BojanKogoj/ng-builder-file-remover.git"
},
"keywords": [
"angular",
"builder",
"file remover"
],
"builders": "builders.json",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run tsc && npm run copy",
"copy": "cpy src/schema.json dist --flat",
"clean": "rimraf dist",
"tsc": "tsc"
},
"files": [
"dist",
"builders.json"
],
"devDependencies": {
"@angular-devkit/architect": "^0.1303.8",
"@angular-devkit/core": "^13.3.8",
"@types/fs-extra": "^8.1.1",
"cpy-cli": "^4.1.0",
"fs-extra": "^10.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
}
}