-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 942 Bytes
/
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
{
"name": "rxjs-subscribetap",
"version": "1.0.0",
"description": "SubscribeTap is a RxJS' operator that will execute defined function for you when the source gets subscribed.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "Unlicense",
"keywords": [
"rxjs"
],
"author": "mikecud",
"types": "dist/index.d.ts",
"repository": "https://github.com/mikecud/rxjs-subscribetap",
"issues": "https://github.com/mikecud/rxjs-subscribetap/issues",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run test && npm run lint && npm run build"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.6.0",
"rxjs": "^6.0.0",
"strict-tslint-config": "^1.0.1",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"peerDependencies": {
"rxjs": "^6.0.0"
}
}