-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 960 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
38
39
40
41
{
"name": "@webacad/ng-store",
"description": "Store wrapper for angular",
"version": "0.1.0",
"keywords": [
"angular",
"store"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Web-ACAD/ng-store.git"
},
"main": "./lib/index.js",
"author": {
"name": "David Kudera",
"email": "[email protected]",
"url": "https://www.davidkudera.com"
},
"peerDependencies": {
"@angular/core": "^6.0",
"store": "^2.0.12"
},
"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"
}
}