-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.82 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
{
"name": "@zeit-dev/ngrx-util",
"version": "2.0.0-pre.1",
"description": "Utility classes, functions we commonly use across ngrx projects.",
"repository": "https://github.com/zeitdev/ngrx-util",
"author": "Marian Theisen <[email protected]>",
"license": "MIT",
"private": false,
"$schema": "./node_modules/ng-packagr/package.schema.json",
"devDependencies": {
"@angular/compiler": "^11.2.4",
"@angular/compiler-cli": "^11.2.4",
"@angular/core": ">= 11.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"install-peers-cli": "^2.1.1",
"jest": "^26.6.3",
"jest-marbles": "^2.5.1",
"ng-packagr": "^11.2.4",
"prettier": "^2.2.1",
"rxjs": ">= 6.5.0",
"ts-jest": "^26.5.3",
"tslib": "^2.1.0",
"typedoc": "^0.20.30",
"typedoc-plugin-external-module-name": "^4.0.6",
"typescript": ">= 4.1, <4.2",
"zone.js": "~0.11.4"
},
"ngPackage": {
"lib": {
"entryFile": "lib/public-api.ts",
"umdModuleIds": {
"@ngrx/store": "@ngrx/store",
"@ngrx/effects": "@ngrx/effects"
}
}
},
"scripts": {
"build": "ng-packagr -p package.json",
"doc": "typedoc --out docs lib",
"test": "jest",
"preversion": "yarn test",
"postversion": "yarn build && git push --tags && yarn publish dist --non-interactive --access public --tag latest && git push && echo \"Successfully released version $npm_package_version!\"",
"postinstall": "install-peers --force-run",
"lint": "yarn eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"format": "prettier --write ."
},
"peerDependencies": {
"@angular/core": ">= 11.0",
"@ngrx/effects": ">= 11.0",
"@ngrx/store": ">= 11.0",
"rxjs": ">= 6.5.0"
}
}