forked from masvis/angular4-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.93 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
74
75
{
"name": "angular4-hal",
"version": "7.8.1",
"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": "index.js",
"module": "index.js",
"typings": "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 7",
"Angular 8 cooming soon"
],
"issues": {
"url": "https://github.com/sante85/angular4-hal/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sante85/angular4-hal.git"
},
"devDependencies": {
"@angular/cli": "7.3.0",
"@angular/compiler": "~7.2.x",
"@angular/compiler-cli": "~7.2.x",
"@angular/platform-server": "~7.2.x",
"@types/mocha": "^2.2.43",
"@types/node": "10.12.21",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"nconf": "^0.10.0",
"optimist": "^0.6.1",
"ts-node": "8.0.2",
"rimraf": "^2.6.3",
"tslint": "^5.12.1",
"tslint-ionic-rules": "*",
"typescript": "~3.1.6",
"coveralls": "2.13.1",
"fetch-mock": "5.11.0",
"jest": "20.0.4",
"hoek": "4.2.1",
"growl": "1.10.5"
},
"dependencies": {
"@angular/animations": "~7.2.x",
"@angular/common": "~7.2.x",
"@angular/core": "~7.2.x",
"@angular/platform-browser": "~7.2.x",
"@angular/platform-browser-dynamic": "~7.2.x",
"cryptiles": "^4.1.3",
"hash.js": "1.1.7",
"query-string": "6.2.0",
"rxjs": "~6.3.3",
"url": "0.11.0",
"util": "0.11.1",
"zone.js": "~0.8.29"
},
"engines": {
"node": ">=4"
}
}