-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
127 lines (127 loc) · 3.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ngrx-json-api",
"version": "2.3.1",
"description": "A JSON API client for ngrx",
"module": "FESM/ngrx-json-api.es5.js",
"es2015": "FESM/ngrx-json-api.js",
"main": "bundles/ngrx-json-api.umd.js",
"typings": "ngrx-json-api.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/abdulhaq-e/ngrx-json-api.git"
},
"scripts": {
"precommit": "yarn run prettier",
"build": "ts-node ./build/index.ts",
"deploy:builds": "ts-node ./build/deploy-build.ts",
"test:unit": "node ./tests.js",
"test": "nyc node ./tests.js",
"clean": "git clean -xdf && yarn",
"coverage:html": "nyc report --reporter=html",
"ci": "yarn run build && yarn run test && yarn run coveralls",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prettier": "prettier --parser typescript --single-quote --trailing-comma --write \"./**/*.ts\"",
"watch:tests": "chokidar './(src|spec)/**/*.ts' --initial -c 'nyc --reporter=text --reporter=html yarn run test:unit'"
},
"authors": [
"Abdulhaq Emhemmed",
"remmeier"
],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec",
"**/spec/**/*"
],
"include": [
"**/*.ts"
]
},
"license": "MIT",
"peerDependencies": {
"@angular/common": ">=6.0.0",
"@angular/core": ">=6.0.0",
"@ngrx/effects": ">=6.1.0",
"@ngrx/store": ">=6.1.0",
"deep-object-diff": "^1.1.0",
"rxjs": "~6.2.0",
"rxjs-compat": "~6.2.0"
},
"devDependencies": {
"@angular/animations": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/http": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/platform-server": "^6.0.0",
"@ngrx/effects": "6.1.0",
"@ngrx/store": "6.1.0",
"@types/deep-freeze": "^0.1.1",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.35",
"@types/hammerjs": "^2.0.35",
"@types/jasmine": "^2.5.2",
"@types/lodash": "^4.14.98",
"@types/node": "^9.4.0",
"@types/ora": "^1.3.1",
"@types/rimraf": "^2.0.2",
"@types/selenium-webdriver": "^3.0.8",
"@types/uglify-js": "^2.6.30",
"@types/webpack": "^3.8.4",
"chokidar": "^2.0.0",
"chokidar-cli": "^1.2.0",
"codelyzer": "^5.0.0",
"conventional-changelog-cli": "^1.3.0",
"core-js": "^2.5.3",
"coveralls": "^3.0.0",
"cpy-cli": "^1.0.1",
"deep-freeze": "^0.0.1",
"deep-object-diff": "^1.1.0",
"expand-range": "^2.0.1",
"filename-regex": "^2.0.1",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"jasmine-marbles": "^0.4.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.4.1",
"karma-jasmine": "^1.1.1",
"karma-jasmine-diff-reporter": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-mocha-reporter": "^2.2.5",
"karma-remap-istanbul": "^0.6.0",
"lodash": "^4.17.2",
"module-alias": "^2.0.3",
"nyc": "^11.4.1",
"ora": "^1.3.0",
"prettier": "^1.10.2",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rollup": "^0.55.1",
"rxjs": "~6.2.0",
"rxjs-compat": "~6.2.0",
"sorcery": "^0.10.0",
"ts-node": "^4.1.0",
"tslib": "^1.9.0",
"tslint": "~5.9.1",
"typescript": "2.9.2",
"uglify-js": "^2.8.22",
"zone.js": "~0.8.26"
},
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
}
}