-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "root",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"test": "run-p test:*",
"test:jest": "lerna run test",
"test:mocha": "c8 mocha validator-e2e",
"example": "ts-node validator-cli/index.ts e2e --docs validator-e2e/example/hydracg-movies.hydra.json http://hydra-movies.herokuapp.com",
"build": "lerna run prepack",
"release": "changeset publish"
},
"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",
"@babel/register": "^7.12.13",
"@changesets/cli": "^2.14.1",
"@hydrofoil/hypertest": "^0.7.2",
"@tpluscode/eslint-config": "^0.1.1",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^13.1.8",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.3.0",
"c8": "^7.6.0",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-jest": "^24.1.5",
"husky": "^2.4.1",
"lerna": "^3.20.2",
"minimist": ">=1.2.2",
"mocha": "^8.3.0",
"npm-run-all": "^4.1.5",
"standard": "^16.0.3",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"ts-node": "^8.8.2",
"typescript": "^3"
},
"peerDependencies": {
"hydra-validator-core": "*",
"hydra-validator-e2e": "*"
},
"workspaces": [
"validator-analyse",
"validator-cli",
"validator-core",
"validator-e2e",
"validator-ui"
],
"mocha": {
"extension": "spec.ts",
"recursive": true,
"require": [
"mocha-setup.js"
]
},
"c8": {
"all": true,
"reporter": "lcov",
"exclude": [
"node_modules",
"validator-analyse",
"validator-core"
]
}
}