This repository was archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.74 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.74 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ng-http-interceptor",
"version": "0.0.0-semantically-relesed",
"scripts": {
"build": "node scripts/build.js",
"check-coverage": "istanbul check-coverage --functions 75 --lines 75 --branches 75 --statements 75",
"ci": "npm run lint && npm run test:single && npm run check-coverage",
"commit": "git-cz",
"lint": "tslint src/**/*.ts",
"prepublish": "npm run build",
"test": "karma start",
"test:single": "npm run test -- --single-run",
"test:report": "cd coverage && codecov",
"presemantic-release": "node scripts/release.js",
"semantic-release": "cd dist && semantic-release pre && npm publish && semantic-release post",
"e2e": "npm-run-all -p -r e2e:server e2e:protractor",
"e2e:server": "node e2e/demo/server.js",
"e2e:protractor": "protractor",
"e2e:update": "webdriver-manager update"
},
"repository": {
"type": "git",
"url": "https://github.com/gund/ng-http-interceptor"
},
"author": {
"name": "Alex Malkevich",
"email": "malkevich.alex@gmail.com"
},
"keywords": [
"ng",
"ng2",
"angular",
"angular2",
"http",
"interceptor",
"library"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gund/ng-http-interceptor/issues"
},
"main": "./dist/bundles/ng-http-interceptor.umd.js",
"module": "./dist/bundles/ng-http-interceptor.es5.js",
"es2015": "./dist/bundles/ng-http-interceptor.es2015.js",
"typings": "./dist/ng-http-interceptor.d.ts",
"peerDependencies": {
"@angular/core": "^5.0.0",
"@angular/http": "^5.0.0",
"rxjs": "^5.0.0",
"tslib": "^1.0.0"
},
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/platform-server": "^5.0.0",
"@angular/router": "^5.0.0",
"@types/jasmine": "^2.5.45",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.2",
"codecov": "^1.0.1",
"codelyzer": "^3.0.0-beta.4",
"commitizen": "^2.9.6",
"copy-dir": "^0.3.0",
"copyfiles": "^1.2.0",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^2.0.0",
"express": "^4.15.2",
"ghooks": "^2.0.0",
"istanbul": "^0.4.5",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "^3.2.0",
"json-loader": "^0.5.4",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"npm-run-all": "^4.0.2",
"postcss-loader": "^1.3.3",
"protractor": "^5.2.0",
"put-cli": "^0.1.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-globals-regex": "^0.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rxjs": "^5.3.0",
"semantic-release": "^6.3.2",
"source-map": "^0.5.6",
"source-map-loader": "^0.2.0",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"ts-node": "^3.3.0",
"tslib": "^1.6.0",
"tslint": "^4.5.1",
"tslint-loader": "^3.4.3",
"typescript": "~2.4.0",
"typings": "^2.1.0",
"uglifyjs": "^2.4.10",
"url-loader": "^0.5.8",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"webpack-md5-hash": "^0.0.5",
"webpack-merge": "^4.1.0",
"webpack-sources": "^0.2.3",
"zone.js": "^0.8.11"
},
"engines": {
"node": ">=6.0.0"
},
"config": {
"ghooks": {
"pre-commit": "echo \"Verifying commit...\" && npm run ci"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}