-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
45
46
47
{
"name": "@webacad/ng-jwt-auth",
"description": "JWT authentication for angular",
"version": "1.1.0",
"keywords": [
"angular",
"auth",
"jwt",
"token"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Web-ACAD/ng-jwt-auth.git"
},
"main": "./lib/index.js",
"author": {
"name": "David Kudera",
"email": "[email protected]",
"url": "https://www.davidkudera.com"
},
"peerDependencies": {
"@angular/core": "^6.0",
"@angular/common": "^6.0",
"@angular/router": "^6.0",
"@webacad/ng-store": "^0.1.0",
"jwt-decode": "^2.2.0",
"rxjs": "^6.0"
},
"devDependencies": {
"@angular/compiler": "^6.0",
"@angular/compiler-cli": "^6.0",
"@types/node": "^10.9.1",
"ng-packagr": "^4.1.0",
"npm-install-peers": "^1.2.1",
"reflect-metadata": "^0.1.12",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^2.9.0"
},
"scripts": {
"build": "ng-packagr -p ng-package.json",
"lint": "tslint --project tsconfig.json",
"install:peers": "npm-install-peers",
"publish:lib": "npm run build && npm publish lib --access=public"
}
}