-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "hydra-validator",
"version": "2.0.1",
"description": "CLI tool to run checks against a Hydra API",
"main": "index.js",
"type": "module",
"bin": {
"hydra-validator": "index.js"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"scripts": {
"prepack": "tsc",
"precommit": "lint-staged",
"start": "ts-node index.ts e2e https://wikibus-sources.lndo.site/ --docs /Users/tomaszpluskiewicz/projects/github/wikibus/sources.wikibus.org/e2e-tests/Brochure/Create.hydra.hypertest.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypermedia-app/hydra-validator.git"
},
"keywords": [
"hydra",
"hypermedia",
"validator"
],
"author": "Tomasz Pluskiewicz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hypermedia-app/hydra-validator/issues"
},
"homepage": "https://github.com/hypermedia-app/hydra-validator#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.12",
"@types/matchdep": "^2",
"@types/node": "^11.13.9",
"@types/node-fetch": "^2.3.3",
"hydra-validator-analyse": "^0.3.1",
"hydra-validator-e2e": "^0.12.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.7.1",
"lint-staged": "^8.2.1",
"minimist": ">=1.2.2",
"rimraf": "^2.6.3"
},
"dependencies": {
"commander": "^2.20.0",
"debug": "^4.1.1",
"hydra-validator-core": "^0.5.1",
"matchdep": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}