generated from tpluscode/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.35 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
{
"name": "express-rdf-request",
"version": "2.0.1",
"description": "Express middleware for easily accessing RDF payload resource",
"main": "index.js",
"type": "module",
"types": "index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"test": "c8 --all --reporter=lcov mocha --recursive --extension ts test",
"prepare": "husky install",
"prepack": "tsc",
"release": "changeset publish"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"dependencies": {
"@rdfjs/environment": "^0.1.2",
"@rdfjs/express-handler": "^2.0.0",
"@rdfjs/namespace": "^2.0.0",
"@types/clownface": "^2",
"@types/rdfjs__environment": "^0.1.7",
"absolute-url": "^1.2.2",
"clownface": ">=2",
"express": "^4.17.1",
"is-relative-url": "^4.0.0",
"middleware-async": "^1.3.1",
"once": "^1.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.14.1",
"@tpluscode/eslint-config": "^0.4.4",
"@tpluscode/rdf-ns-builders": "3 - 4",
"@tpluscode/rdf-string": "^1.0.3",
"@types/absolute-url": "^1.2.0",
"@types/chai": "^4.2.15",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/node": "18.17.14",
"@types/once": "^1.4.0",
"@types/rdf-js": "^4.0.1",
"@types/rdfjs__express-handler": "^1.1.2",
"@types/rdfjs__namespace": "^2.0.5",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"c8": "^7.7.0",
"chai": "^4.3.4",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^8.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.2.3",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"standard": "^16.0.3",
"supertest": "^6.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypermedia-app/express-rdf-request.git"
},
"author": "Tomasz Pluskiewicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/hypermedia-app/express-rdf-request/issues"
},
"homepage": "https://github.com/hypermedia-app/express-rdf-request#readme",
"mocha": {
"watch-files": [
"./**/*.ts"
],
"require": [
"mocha-setup.cjs"
],
"loader": "ts-node/esm"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}