-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.35 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
{
"name": "ngx-resource-factory",
"version": "0.0.0",
"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",
"test-ci": "karma start ./karma/karma.conf.js --single-run",
"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/common": "^13.0.3",
"@angular/compiler": "^13.0.3",
"@angular/compiler-cli": "^13.0.3",
"@angular/core": "^13.0.3",
"@angular/platform-browser": "^13.0.3",
"@angular/platform-browser-dynamic": "^13.0.3",
"@compodoc/compodoc": "^1.1.14",
"@types/jasmine": "^2.5.53",
"@types/jasminewd2": "^2.0.2",
"babel-polyfill": "^6.26.0",
"chrome-headless-launcher": "^0.1.5",
"codelyzer": "^6.0.2",
"jasmine-core": "^3.9.0",
"jasmine-spec-reporter": "^7.0.0",
"json-loader": "^0.5.7",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^2.0.13",
"lodash": "^4.17.0",
"protractor": "^5.4.1",
"puppeteer": "^1.1.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.0.0",
"ts-loader": "^3.5.0",
"ts-node": "^3.2.0",
"tslint": "^5.7.0",
"tslint-loader": "^3.6.0",
"typedoc": "^0.9.0",
"typescript": "^4.4.4",
"uglifyjs": "^2.4.11",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.11.0",
"zone.js": "^0.11.3"
},
"peerDependencies": {
"@angular/common": ">=12.0.0",
"@angular/core": ">=12.0.0",
"lodash": "^4.17.0",
"rxjs": ">=6.0.0"
}
}