-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ngrx-store-simplr",
"version": "0.1.37",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc --outDir .dest",
"prebuild": "rimraf dist",
"build": "ngc -p tsconfig.dist.json",
"test": "npm run jest",
"test:w": "npm run jest:w",
"jest": "jest --config=jest.config.json --no-cache",
"jest:w": "jest --config=jest.config.json --watch",
"prepublish": "npm test && npm run build"
},
"keywords": [
"Angular",
"RxJS",
"TypeScript",
"@ngrx/store"
],
"files": [
"README.md",
"LICENSE",
"index.js",
"index.d.ts",
"dist",
"src",
"package.json"
],
"author": "Tomohiro Noguchi @ovrmrw",
"repository": {
"type": "git",
"url": "https://github.com/ovrmrw/ngrx-store-simplr"
},
"license": "MIT",
"devDependencies": {
"@angular/compiler": "^4.0.3",
"@angular/compiler-cli": "^4.0.3",
"@angular/core": "^4.0.3",
"@ngrx/core": "^1.2.0",
"@ngrx/store": "^2.2.2",
"@types/jest": "^18.1.1",
"@types/node": "^6.0.40",
"jest": "^18.1.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.1",
"rimraf": "^2.5.4",
"rxjs": "^5.0.0",
"ts-jest": "^18.0.3",
"ts-node": "^2.0.0",
"tslint": "^4.3.1",
"typescript": "^2.2.0"
},
"peerDependencies": {
"@ngrx/store": "^2.0.0",
"typescript": "^2.1.4"
}
}