-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.78 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
{
"name": "clownface-shacl-path",
"description": "Find nodes in graph by following SHACL Paths",
"version": "2.4.0",
"main": "index.js",
"type": "module",
"files": [
"index.*",
"lib"
],
"sideEffects": false,
"exports": {
".": "./index.js"
},
"scripts": {
"prepare": "husky install",
"prepack": "npm run build",
"build": "tsc",
"test": "c8 --all --reporter=lcov mocha --recursive 'test/*.test.ts'",
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"release": "changeset publish"
},
"dependencies": {
"@rdfjs/term-map": "^2.0.0",
"@rdfjs/term-set": "^2.0.1",
"@tpluscode/rdf-ns-builders": ">=3.0.2",
"@tpluscode/rdf-string": "^1.3.1"
},
"peerDependencies": {
"clownface": "1 - 2",
"@types/sparqljs": "^3.1.10"
},
"devDependencies": {
"@changesets/cli": "^2.19.0",
"@tpluscode/eslint-config": "^0.4.5",
"@types/chai": "^4.2.19",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/sparqljs": "^3.1.10",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@zazuko/env-node": "^2.1.2",
"c8": "^7.13.0",
"chai": "^4.3.4",
"clownface": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"string-to-stream": "^3.0.1",
"tsm": "^2.3.0",
"typescript": "^5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/hypermedia-app/clownface-shacl-path"
},
"author": "Tomasz Pluskiewicz <awesome@hypermedia.app>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"mocha": {
"watch-files": [
"./**/*.ts"
],
"loader": "tsm"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}