-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "@orniz/simple-hal-client",
"version": "2.1.0",
"description": "Simple HAL(-FORMS) client",
"homepage": "https://github.com/beuss/simple-hal-client",
"bugs": {
"url": "https://github.com/beuss/simple-hal-client/issues"
},
"author": {
"name": "Sébastien Le Ray",
"email": "sebastien-github@orniz.org"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "MIT",
"keywords": [
"hypermedia",
"hal",
"hal-forms"
],
"scripts": {
"test": "mocha",
"test:coverage": "npx nyc npm test",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.2",
"@types/sinon": "^10.0.20",
"chai": "^4.3.10",
"gts": "^5.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^17.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "~5.2.0"
},
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"@types/url-template": "^2.0.30",
"url-template": "^2.0.8"
}
}