-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ngx-helpers",
"version": "0.4.0",
"description": "Collection of useful utils for building large-scale Angular applications",
"main": "./release/ngx-helpers.min.umd.js",
"module": "./index.js",
"scripts": {
"commit": "git-cz",
"build": "npm run clean:pre && npm run build:js && npm run build:umd && npm run build:uglify && npm run clean:post",
"build:js": "ngc -p tsconfig.prod.json",
"build:uglify": "uglifyjs -c --screw-ie8 --comments -o ./release/ngx-helpers.min.umd.js ./release/ngx-helpers.umd.js",
"build:umd": "rollup -c rollup.config.js",
"clean:post": "rimraf src/**/*.ngfactory.ts",
"clean:pre": "rimraf release compiled coverage .ngc .nyc_output npm-debug.log",
"release": "npm run release:test && npm run build && npm run release:changelog && npm run release:copy",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release:copy": "cpy LICENSE package.json README.md CHANGELOG.md release",
"release:test": "karma start karma.config.js --single-run",
"clean": "npm run clean:pre",
"test": "npm run clean && npm run release:test",
"lint": "tslint --fix -p tsconfig.json -c tslint.json"
},
"repository": {
"type": "git",
"repository": "https://github.com/joumenharzli/ngx-helpers.git"
},
"keywords": [
"RxJS",
"Angular",
"Helpers"
],
"author": "Joumen Ali HARZLI <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joumenharzli/ngx-helpers/issues"
},
"homepage": "https://github.com/joumenharzli/ngx-helpers#readme",
"devDependencies": {
"@angular/animations": "^4.2.6",
"@angular/common": "^4.2.6",
"@angular/compiler": "^4.2.6",
"@angular/compiler-cli": "^4.2.6",
"@angular/core": "^4.2.6",
"@angular/http": "^4.2.6",
"@angular/platform-browser": "^4.2.6",
"@angular/platform-browser-dynamic": "^4.2.6",
"@angular/platform-server": "^4.2.6",
"@angular/router": "^4.2.6",
"@types/jasmine": "^2.5.53",
"@types/node": "^8.0.9",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.1",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"jasmine": "^2.6.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-typescript": "^3.0.4",
"rimraf": "^2.6.1",
"rollup": "^0.43.0",
"rxjs": "^5.4.2",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.4.1",
"uglify-js": "^3.0.24",
"zone.js": "^0.8.12"
},
"peerDependencies": {
"@angular/core": "^2.0.0 || ^4.0.0",
"@angular/http": "^2.0.0 || ^4.0.0",
"@angular/router": "^2.0.0 || ^4.0.0",
"rxjs": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}