-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "@muellerbbm-vas/grivet",
"description": "A JSON:API client library written in Typescript with emphasis on RESTful traversal of resources according to HATEOAS principles",
"homepage": "https://github.com/muellerbbm-vas/grivet",
"version": "0.0.9",
"author": {
"name": "Müller-BBM VibroAkustik Systeme GmbH",
"url": "http://www.muellerbbm-vas.com",
"email": "info.de@muellerbbm-vas.de"
},
"repository": {
"type": "git",
"url": "git@github.com:muellerbbm-vas/grivet.git"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/muellerbbm-vas/grivet/blob/master/LICENSE"
}
],
"keywords": [
"JSON:API",
"REST",
"HATEOAS",
"TypeScript",
"HTTP"
],
"bugs": {
"url": "https://github.com/muellerbbm-vas/grivet/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test && npm run docs",
"build": "npx tsc",
"docs": "npx typedoc --gitRevision master --readme none --includes ./ --name \"Grivet Reference\" --out ./docs ./src",
"watch": "npx tsc -watch",
"test": "npx jest test",
"lint": "npx tslint -p . -c tslint.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint",
"pre-push": "npm run test"
}
},
"devDependencies": {
"@types/jest": "27.5.0",
"@types/node": "20.4.8",
"husky": "8.0.3",
"jest": "27.5.1",
"prettier": "3.0.1",
"pretty-quick": "3.1.3",
"ts-jest": "27.1.4",
"tslint": "6.1.3",
"typedoc": "0.24.8",
"typescript": "4.9.5"
}
}