-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "@ngx-ext/decorators",
"version": "0.0.1",
"description": "Set of decorators making your life easier.",
"main": "index",
"types": "index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "$(npm bin)/tsc -p tsconfig.json",
"prepare": "npm run build",
"publish:rc": "npm publish --tag=RC --access=public",
"publish:prod": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngx-ext/decorators.git"
},
"keywords": [
"angular",
"decorators",
"abstract",
"class",
"page",
"@AbstractClass",
"@Page",
"decorator"
],
"author": "Daniel Kucal",
"license": "ISC",
"bugs": {
"url": "https://github.com/ngx-ext/decorators/issues"
},
"homepage": "https://github.com/ngx-ext/decorators#readme",
"peerDependencies": {
"@angular/core": ">= 2"
},
"devDependencies": {
"@angular/core": ">= 2",
"@types/node": ">= 11",
"typescript": ">= 3"
}
}