-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "rdf-loader-code",
"version": "2.2.0",
"description": "JavaScript native types loader for the Code ontology",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --quiet --ignore-path .gitignore",
"test": "c8 --reporter=lcov mocha",
"release": "changeset publish",
"prepack": "tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git://github.com/zazuko/rdf-loader-code.git"
},
"keywords": [],
"author": "Thomas Bergwinkl <bergi@axolotlfarm.org> (https://www.bergnet.org/people/bergi/card#me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/rdf-loader-code/issues"
},
"homepage": "https://github.com/zazuko/rdf-loader-code",
"dependencies": {
"@rdfjs/namespace": "^2.0.0",
"clownface": "^2.0.0",
"is-graph-pointer": "^2.1.0",
"rdf-literal": "^1.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rdfjs/data-model": "^1",
"@tpluscode/eslint-config": "^0.4.4",
"@types/chai": "^4.3.11",
"@types/clownface": "^2.0.7",
"@types/mocha": "^10.0.6",
"@zazuko/env-node": "^1.0.3",
"c8": "^7.7.3",
"chai": "^4",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"mocha": "^9.0.2",
"rdf-loaders-registry": "^1.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"lint-staged": {
"*.js": "eslint --fix --quiet"
},
"mocha": {
"loader": "ts-node/esm"
}
}