-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 1.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "traverson-hal",
"description": "HAL (hypertext application language) adapter for Traverson",
"license": "MIT",
"version": "0.0.0-semantically-released",
"engines": {
"node": "^14 || >= 16"
},
"author": {
"name": "Bastian Krol",
"email": "[email protected]"
},
"contributors": [
{
"name": "Matt Travi",
"email": "[email protected]",
"url": "http://travi.org"
},
{
"name": "Michael Buckley",
"email": "[email protected]"
},
{
"name": "Adam Szaraniec"
}
],
"repository": "https://github.com/traverson/traverson-hal.git",
"keywords": [
"JSON",
"REST",
"API",
"HATEOAS",
"hypertext",
"hypermedia",
"HAL"
],
"scripts": {
"test": "grunt test",
"mocha": "mocha",
"build": "grunt build",
"prepack": "run-s build",
"lint:engines": "ls-engines",
"prepare": "husky install"
},
"files": [
"index.js"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"halfred": "2.0.0"
},
"devDependencies": {
"chai": "4.5.0",
"commitlint-config-traverson": "1.0.56",
"cz-conventional-changelog": "3.3.0",
"grunt": "1.6.1",
"grunt-browserify": "6.0.0",
"grunt-cli": "1.5.0",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-jshint": "3.2.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-contrib-watch": "1.1.0",
"grunt-mocha": "1.2.0",
"grunt-mocha-test": "0.13.3",
"husky": "9.0.1",
"load-grunt-tasks": "5.1.0",
"ls-engines": "0.9.2",
"mocha": "11.0.1",
"npm-run-all2": "7.0.2",
"poll-forever": "1.0.0",
"request": "2.88.2",
"sinon": "19.0.2",
"sinon-chai": "3.7.0",
"traverson": "8.0.3",
"traverson-mock-response": "1.1.0",
"traverson-test-server": "1.12.1"
},
"peerDependencies": {
"traverson": "6.1.0 || ^7.0.0 || ^8.0.0"
},
"browser": {
"traverson-test-server": false
}
}