-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "x-ng2-http-interceptor-dontuse",
"version": "0.0.0-development",
"description": "Adds interception capability around angular http api",
"keywords": [
"Angular",
"Http interceptor",
"Interceptor"
],
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "npm prune && rimraf .tmp && rimraf dist",
"transpile": "ngc",
"package": "rollup -c",
"minify": "./node_modules/uglify-js/bin/uglifyjs dist/bundles/x-ng2-http-interceptor-dontuse.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/x-ng2-http-interceptor-dontuse.umd.min.js",
"generateDistPackageJson": "node .scripts/generatePackageJson.js",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run generateDistPackageJson",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm run build && npm publish dist && semantic-release post"
},
"dependencies": {
"@angular/core": "^2.0.0",
"@angular/http": "^2.0.0",
"rxjs": "^5.0.0-beta.0"
},
"devDependencies": {
"@angular/compiler": "^2.0.0",
"@angular/compiler-cli": "^2.0.0",
"codelyzer": "~2.0.0-beta.1",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.14.0",
"json-format": "^1.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rxjs": "^5.0.0-beta.0",
"semantic-release": "^6.3.2",
"tslint": "^4.4.2",
"typescript": "~2.0.0",
"uglify-js": "^2.7.5",
"validate-commit-msg": "^2.11.1"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "master"
},
"author": {
"name": "1Ton Technologies",
"url": "http://1ton.in"
},
"homepage": "https://github.com/1tontech/x-ng2-http-interceptor-dontuse#readme",
"bugs": {
"url": "https://github.com/1tontech/x-ng2-http-interceptor-dontuse/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/1tontech/x-ng2-http-interceptor-dontuse.git"
}
}