-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "@reactgular/observables",
"version": "2.0.0",
"description": "Angular library that contains handy rxjs operators.",
"author": "reactgular.com",
"homepage": "https://github.com/reactgular/observables",
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run lint && npm run build:es5 && npm run build:cjs && npm run build:typings",
"build:es5": "tsc -p tsconfig.es5.json && rollup -c rollup.config.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:typings": "tsc -p tsconfig.typings.json",
"test": "jest",
"test:watch": "jest --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint -p tsconfig.json",
"preversion": "npm run lint",
"postbuild": "./post-build.sh",
"readme": "node readme.js",
"jsdoc": "jsdoc dist/bundles/observables.umd.js"
},
"keywords": [
"rx",
"rxjs",
"reactivex",
"reactive-extensions",
"observables",
"streams",
"stream"
],
"repository": {
"type": "git",
"url": "https://github.com/reactgular/observables"
},
"bugs": {
"url": "https://github.com/reactgular/observables/issues"
},
"peerDependencies": {
"rxjs": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"coveralls": "^3.0.6",
"jest": "^24.9.0",
"mustache": "^3.1.0",
"rollup": "^1.21.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rxjs": "^6.0.0",
"rxjs-marbles": "^5.0.3",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.6.3"
},
"dependencies": {
"tslib": "^1.10.0"
}
}