-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
41 lines (41 loc) · 986 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
34
35
36
37
38
39
40
41
{
"name": "subsink",
"version": "1.0.2",
"main": "dist/index.js",
"es2015": "dist/es2015/index.js",
"description": "RxJS subscription sink for unsubscribing gracefully in a component",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc && tsc -p tsconfig.es2015.json",
"prepublish": "rm -rf ./dist && npm test && npm run build"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|js)$"
},
"keywords": [
"RxJS unsubscribe",
"Angular unsubscribe"
],
"typings": "./dist/index.d.ts",
"maintainers": [
"Ward Bell"
],
"repository": {
"url": "https://github.com/wardbell/subsink"
},
"devDependencies": {
"@types/jest": "^21.1.4",
"jest": "^21.2.1",
"ts-jest": "^21.1.3",
"typescript": "^2.8.3"
}
}