-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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": "rdf-express-node-factory",
"version": "2.0.0",
"description": "Express middleware which sets up an RDF/JS factory creating named nodes relative to the request URL",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"prepack": "tsc",
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"test": "c8 --all --reporter=lcov mocha --recursive --extension ts test",
"release": "changeset publish"
},
"files": [
"*.js",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/hypermedia-app/rdf-express-node-factory"
},
"author": {
"email": "[email protected]",
"name": "Tomasz Pluskiewicz"
},
"license": "MIT",
"dependencies": {
"@rdfjs/environment": "^0.1.2",
"absolute-url": "^1.2.2",
"is-absolute-url": "^4.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.14.1",
"@rdfjs/types": "^1.1.0",
"@tpluscode/eslint-config": "^0.4.4",
"@types/absolute-url": "^1.2.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.14",
"@types/rdfjs__environment": "^0.1.7",
"@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",
"c8": "^7.7.0",
"chai": "^4.3.4",
"eslint-plugin-import": "^2.28.1",
"express": "^4.17.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.2.3",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"standard": "^16.0.3",
"supertest": "^6.1.3"
},
"mocha": {
"watch-files": [
"./**/*.ts"
],
"require": [
"mocha-setup.cjs"
],
"loader": "ts-node/esm"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}