-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "api-tuner",
"version": "0.1.3",
"main": "index.js",
"type": "module",
"license": "MIT",
"bin": {
"api-tuner": "./bin/tuner.sh"
},
"scripts": {
"download-eye": "EYE_VERSION=11.5.2 ./lib/download-eye.sh",
"postinstall": "([ -d eye ] || npm run download-eye) && eye/install.sh --prefix=eye",
"prepare": "husky",
"lint": "eslint . --quiet --ignore-path .gitignore",
"test": "./bin/tuner.sh tests/*.n3 tests/**/*.n3",
"release": "changeset publish"
},
"files": [
"bin/tuner.sh",
"logging",
"lib",
"rules"
],
"dependencies": {
"@changesets/cli": "^2.27.12",
"@jeswr/pretty-turtle": "^1.5.0",
"@zazuko/env-node": "^2.1.4",
"jsonld": "^8.3.3",
"rdf-validate-shacl": "^0.5.6",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rdfjs/types": "^1",
"@tpluscode/eslint-config": "^0.5.0",
"@types/jsonld": "^1.5.15",
"@types/rdf-validate-shacl": "^0.4.9",
"@types/yargs": "^17.0.33",
"husky": "^9.1.7",
"lint-staged": "^15.4.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}