-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.89 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
{
"name": "ngx-http-batcher",
"version": "1.0.10",
"description": "Angular (2+) HTTP batching module to reduce the number of HTTP requests and increase performance",
"scripts": {
"build": "./node_modules/.bin/ngc -p ./src",
"test": "karma start ./tests/karma.conf.js",
"bundle": "npm run build && webpack && gulp compress",
"postbundle": "copy \"package.json\" \"dist/package.json\" && copy \"CHANGELOG.md\" \"dist/CHANGELOG.md\" && copy \"README.md\" \"dist/README.md\"",
"lint": "tslint -c tslint.json \"src/**/*.ts\""
},
"keywords": [
"ng",
"ngx",
"angular",
"angular-2",
"http-batching",
"http",
"batching",
"performance",
"http performance"
],
"author": "Jon Samwell <[email protected]>",
"license": "MIT",
"main": "./bundles/ngx-http-batcher.umd.js",
"module": "./index.js",
"types": "./index.d.ts",
"devDependencies": {
"@angular/common": "^4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/platform-browser": "^4.4.6",
"@angular/platform-browser-dynamic": "^4.4.6",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.18",
"clean-webpack-plugin": "^0.1.16",
"gulp": "^3.9.1",
"gulp-minify": "0.0.15",
"jasmine": "^2.6.0",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.2.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"systemjs": "^0.20.12",
"ts-helpers": "^1.1.2",
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.3.4",
"uglify-js": "^2.8.23",
"webpack": "^2.5.1"
},
"dependencies": {
"@angular/compiler": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/http": "^4.4.6",
"rxjs": "^5.4.2",
"zone.js": "^0.8.18"
}
}