forked from just-jeb/angular-builders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 KB
/
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
38
39
40
41
42
43
44
{
"name": "@angular-builders/timestamp",
"version": "16.0.1-beta.2",
"repository": {
"type": "git",
"url": "https://github.com/just-jeb/angular-builders",
"directory": "packages/timestamp"
},
"publishConfig": {
"access": "public"
},
"author": "JeB Barabanov",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"builders.json"
],
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"builders": "builders.json",
"scripts": {
"prebuild": "yarn clean && yarn generate",
"build": "yarn prebuild && tsc && yarn postbuild",
"postbuild": "yarn copy",
"clean": "rimraf dist src/schema.ts",
"copy": "cpy --flat src/schema.json dist",
"generate": "quicktype -s schema src/schema.json -o src/schema.ts"
},
"dependencies": {
"@angular-devkit/architect": ">=0.1600.0 < 0.1700.0",
"@angular-devkit/core": "^16.0.0",
"dateformat": "^5.0.2"
},
"devDependencies": {
"@types/dateformat": "^5.0.0",
"cpy-cli": "^5.0.0",
"jest": "29.6.1",
"quicktype": "^15.0.260",
"rimraf": "^5.0.0",
"typescript": "5.0.4"
}
}