-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "@zeit-dev/rxjs-util",
"version": "1.1.1",
"repository": "https://github.com/zeitdev/rxjs-util",
"description": "Utility classes, functions we commonly use across angular projects.",
"author": "Marian Theisen <mt@zeit.dev>",
"license": "MIT",
"private": false,
"$schema": "./node_modules/ng-packagr/package.schema.json",
"devDependencies": {
"@angular/compiler": ">= 8.0.0 < 10.0",
"@angular/compiler-cli": ">= 8.0.0 < 10.0",
"@angular/core": ">= 8.0.0 < 10.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"jest": "^26.0.0",
"jest-marbles": "^2.5.1",
"ng-packagr": "^9.1.0",
"rxjs": ">= 6.5.0",
"ts-jest": "^26.0.0",
"tslib": "^1.10.0",
"typedoc": "^0.17.7",
"typedoc-plugin-external-module-name": "^3.1.0",
"typescript": ">=3.4 <3.9",
"zone.js": "~0.10.3"
},
"ngPackage": {
"lib": {
"entryFile": "lib/public-api.ts"
}
},
"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!\""
},
"peerDependencies": {
"@angular/core": ">= 8.0.0 < 10.0",
"rxjs": ">= 6.5.0"
}
}