forked from NetanelBasal/angular2-take-until-destroy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.02 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
{
"name": "angular2-take-until-destroy",
"version": "1.0.5",
"main": "dist/index.js",
"module": "dist/es5/index.js",
"description": "Add take until component destroy for easy unsubscribe when the component destroyed",
"license": "MIT",
"scripts": {
"clearDist": "rm -rf ./dist",
"clearTest": "rm -rf ./dist-test",
"clear": "npm run clearDist && npm run clearTest",
"compile": "tsc -p tsconfig.es5.json && tsc -p tsconfig.es2015.json",
"precompile": "npm run clearDist",
"compileTest": "tsc -p tsconfig-test.json",
"prepublish": "clear && npm run compile",
"test": "npm run clear && npm run compile && npm run compileTest && tape ./dist-test/test/index.js"
},
"typings": "./dist/index.d.ts",
"files": ["dist"],
"maintainers": ["Netanel Basal", "Eduard Fidiles"],
"repository": {
"url": "https://github.com/NetanelBasal/angular2-take-until-destroy"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"rxjs": "^5.0.0-rc.1",
"tape": "^4.8.0",
"typescript": "^2.0.6"
}
}