forked from beachmachine/ngx-resource-factory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "ngx-resource-factory",
"version": "0.0.11",
"description": "Interact with RESTful APIs with advanced features as caches and data stores.",
"main": "bundle/ngx-resource-factory.min.js",
"module": "module.js",
"typings": "module.d.ts",
"scripts": {
"test": "karma start ./karma/karma.conf.js",
"build": "rm -Rf ./dist && mkdir ./dist && ngc && webpack --config webpack/webpack.build.js && cp package.json README.md LICENSE.md ./dist/ && touch ./dist/.gitkeep",
"generatedocs": "compodoc src --tsconfig ./tsconfig.json --output ./docs --theme readthedocs --name 'ngx-resource-factory'"
},
"keywords": [
"angular",
"rest",
"restful",
"resource"
],
"repository": {
"type": "git",
"url": "[email protected]:beachmachine/ngx-resource-factory.git"
},
"author": "Andreas Stocker <[email protected]>",
"license": "MIT",
"devDependencies": {
"@angular/compiler": "^5.2.8",
"@angular/compiler-cli": "^5.2.8",
"@angular/platform-browser": "^5.2.8",
"@angular/platform-browser-dynamic": "^5.2.8",
"@compodoc/compodoc": "^1.1.5",
"@types/jasmine": "^2.5.53",
"@types/jasminewd2": "^2.0.2",
"babel-polyfill": "^6.26.0",
"chrome-headless-launcher": "^0.1.5",
"codelyzer": "^4.2.1",
"jasmine-core": "^2.99.1",
"jasmine-spec-reporter": "^4.1.0",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.4.2",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^2.0.13",
"protractor": "^5.4.1",
"puppeteer": "^1.1.1",
"reflect-metadata": "^0.1.10",
"ts-loader": "^3.5.0",
"ts-node": "^3.2.0",
"tslint": "^5.7.0",
"tslint-loader": "^3.6.0",
"typedoc": "^0.9.0",
"typescript": "^2.6.2",
"uglifyjs": "^2.4.11",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.11.0",
"zone.js": "^0.8.14"
},
"peerDependencies": {
"@angular/common": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/http": "^5.0.0",
"lodash": "^4.17.0",
"rxjs": "^5.5.0"
}
}