forked from steven166/angular-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "typescript-rest-client",
"version": "1.0.36-SNAPSHOT",
"description": "Generic HTTP client with Typescript Declarative Annotations, Observables, Interceptors and Timeouts.",
"scripts": {
"lint": "tslint --project .",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcailleaux/typescript-rest-client.git"
},
"keywords": [
"http",
"rest",
"client"
],
"author": "Matthieu CAILLEAUX",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/mcailleaux/typescript-rest-client/issues"
},
"homepage": "https://github.com/mcailleaux/typescript-rest-client#readme",
"dependencies": {},
"devDependencies": {
"rxjs": "^6.6.3",
"zone.js": "^0.11.1",
"@types/node": "^14.6.4",
"ts-node": "^9.0.0",
"typescript": "^3.9.7",
"husky": "^4.3.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.1",
"codelyzer": "^6.0.0",
"tslint": "^6.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}