generated from tpluscode/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.47 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
89
90
91
92
93
{
"name": "express-middleware-shacl",
"version": "2.0.0",
"main": "index.js",
"type": "module",
"types": "index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"test": "c8 --all --reporter=lcov mocha test",
"prepare": "husky install",
"prepack": "tsc",
"release": "changeset publish"
},
"files": [
"*.js",
"*.d.ts"
],
"dependencies": {
"@tpluscode/rdfine": "^0.7.3",
"@rdfine/env": "^1.0.3",
"@rdfjs/types": "*",
"@rdfine/shacl": "^0.10.2",
"absolute-url": "^1.2.2",
"clownface-shacl-path": "^2.0.2",
"express": "^4.17.3",
"express-rdf-request": "^2.0.1",
"http-problem-details": "^0.1.5",
"middleware-async": "^1.3.1",
"rdf-dataset-ext": "^1.0.1",
"rdf-validate-shacl": "^0.5.1",
"set-link": "^1.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@tpluscode/eslint-config": "^0.4.4",
"@tpluscode/rdf-string": "^1.0.3",
"@types/absolute-url": "^1.2.0",
"@types/chai": "^4.2.15",
"@types/express": "^4.17.11",
"@types/http-status": "^1.1.2",
"@types/mocha": "^8.2.2",
"@types/node": "^20.6.0",
"@types/rdf-dataset-ext": "^1.0.3",
"@types/rdf-utils-fs": "^2.1.0",
"@types/rdf-validate-shacl": "^0.4.2",
"@types/rdfjs__express-handler": "^1",
"@types/set-link": "^1.0.1",
"@types/sinon": "^10.0.16",
"@types/sinon-chai": "^3.2.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@zazuko/env": "^1.1.1",
"c8": "^7.7.0",
"chai": "^4.3.4",
"http-status": "^1.7.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^10.2.0",
"rdf-utils-fs": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"supertest": "^6.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypermedia-app/express-middleware-shacl.git"
},
"author": "Tomasz Pluskiewicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/hypermedia-app/express-middleware-shacl/issues"
},
"homepage": "https://github.com/hypermedia-app/express-middleware-shacl#readme",
"mocha": {
"recursive": true,
"extension": "ts",
"watch-files": [
"./**/*.ts"
],
"require": [
"mocha-setup.cjs"
],
"loader": "ts-node/esm"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}