-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "@w11k/ngx-lifecycle-mixins",
"version": "0.0.1-rc1",
"description": "Provides mixins for the angular lifecycle.",
"main": "./dist/index.js",
"scripts": {
"publish": "np",
"clean": "del-cli dist",
"prebuild": "npm run clean",
"build": "run-p build:es5 build:es2015",
"build:es5": "tsc -p tsconfig.json",
"build:es2015": "tsc -p tsconfig.dist.es2015.json",
"test": "mocha --opts spec/mocha.opts src/**/*test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w11k/ngx-lifecycle-mixins.git"
},
"author": "Sascha Engmann",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/w11k/ngx-lifecycle-mixins/issues"
},
"homepage": "https://github.com/w11k/ngx-lifecycle-mixins#readme",
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"chai": "4.1.2",
"del-cli": "1.1.0",
"mocha": "5.0.0",
"source-map-support": "0.5.3",
"ts-node": "4.1.0",
"tslint": "^5.11.0",
"typescript": "^3.7.5",
"npm-run-all": "4.1.5",
"babel-jest": "latest",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"babel-preset-es2015": "^6.24.1",
"@angular/core": ">7 <10"
},
"dependencies": {
"rxjs": ">=6.0.0"
},
"peerDependencies": {
"@angular/core": ">7 <10",
"rxjs": ">=6.0.0",
"@w11k/ts-mixins": "0.0.1"
}
}