forked from masvis/angular4-hal
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
{
"name": "@fingerprintsoft/angular-spring-hal",
"version": "7.1.2",
"description": "This Angular module offers a HAL/JSON http-client to easily interact with a Spring Data Rest API or any API that implements the Spring Data Rest resource model",
"author": "Masvis S.r.l.",
"readme": "README.md",
"license": "MIT",
"main": "./dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "node ./scripts/deleteDist",
"build": "npm run tsc",
"tsc": "node_modules/.bin/ngc",
"test": "mocha -r ts-node/register --config=test/test-config.json test/*.test.ts"
},
"keywords": [
"Spring Data Rest",
"Spring",
"HAL",
"hypermedia",
"REST",
"Angular 4",
"Angular 5",
"Angular 6",
"Angular"
],
"issues": {
"url": "https://github.com/fingerprints/angular-spring-hal/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fingerprints/angular-spring-hal/.git"
},
"devDependencies": {
"@angular/compiler": "~9.1.0-next.4",
"@angular/compiler-cli": "~9.1.0-next.4",
"@angular/platform-server": "~9.1.0-next.4",
"@types/mocha": "^2.2.43",
"@types/node": "10.12.9",
"chai": "^4.1.2",
"coveralls": "2.13.1",
"fetch-mock": "5.11.0",
"growl": "1.10.5",
"hoek": "4.2.1",
"jest": "20.0.4",
"mocha": "^5.2.0",
"nconf": "^0.8.4",
"optimist": "^0.6.1",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"tslint": "^5.10.0",
"tslint-ionic-rules": "*",
"typescript": "~3.7.5"
},
"dependencies": {
"@angular/animations": "~9.1.0-next.4",
"@angular/cli": "9.1.0-next.3",
"@angular/common": "~9.1.0-next.4",
"@angular/core": "~9.1.0-next.4",
"@angular/platform-browser": "~9.1.0-next.4",
"@angular/platform-browser-dynamic": "~9.1.0-next.4",
"har-schema": "^1.0.5",
"lru-cache": "^5.1.1",
"performance-now": "^0.2.0",
"query-string": "6.1.0",
"rxjs": "~6.5.4",
"url": "0.11.0",
"util": "0.11.0",
"zone.js": "~0.10.3"
},
"engines": {
"node": ">=4"
}
}