forked from deblockt/hal-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "hal-rest-client",
"author": "Thomas Deblock <[email protected]>",
"version": "0.3.4",
"description": "Hal rest client for typescript",
"tags": [
"HAL",
"Rest",
"Typescript",
"Webservice",
"HTTP"
],
"repository": {
"type": "git",
"url": "https://github.com/deblockt/hal-rest-client.git"
},
"bugs": {
"url": "http://github.com/deblockt/hal-rest-client/issues"
},
"dependencies": {
"axios": "^0.15.3",
"reflect-metadata": "^0.1.9",
"uri-templates": "^0.1.9"
},
"main": "dist/index",
"typings": "dist/index",
"devDependencies": {
"@types/nock": "^8.2.0",
"@types/node": "^7.0.5",
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"nock": "^9.0.5",
"remap-istanbul": "^0.9.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-async": "^2.1.1",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"scripts": {
"coverage": "istanbul cover node_modules/tape/bin/tape dist/test/*.js; remap-istanbul -i coverage/coverage.json -o html-report -t html",
"test": "tsc && tape dist/test/*.js | tap-spec",
"coveralls": "remap-istanbul -i coverage/coverage.json -t lcovonly | coveralls",
"compile": "tsc",
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json --type-check"
}
}