-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "@w11k/ngx-componentdestroyed",
"version": "5.0.2",
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/es2015/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/w11k/ngx-componentdestroyed",
"keywords": [
"Angular",
"RxJS",
"unsubscribe",
"easy unsubscribe",
"memory leak"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"rxjs": ">=6.5.0"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"chai": "4.1.2",
"del-cli": "1.1.0",
"mocha": "5.0.0",
"np": "6.2.0",
"source-map-support": "0.5.3",
"ts-node": "4.1.0",
"tslint": "^6.0.0",
"typescript": "^3.1.6",
"watch": "1.0.2"
},
"peerDependencies": {
"rxjs": ">=6.0.0",
"@angular/core": ">=9.x.x"
},
"scripts": {
"np": "np",
"clean": "del-cli dist",
"build": "npm run clean && npm run dist",
"dist": "tsc -p tsconfig.json && tsc -p tsconfig.dist.es2015.json",
"test": "mocha --opts spec/mocha.opts src/**/*test.ts"
}
}