-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "rdf-validate-datatype",
"version": "0.2.1",
"type": "module",
"description": "Validate literal value of an RDF term based on its datatype.",
"main": "index.js",
"scripts": {
"prepack": "tsc",
"lint": "eslint . --ignore-path .gitignore",
"test": "mocha",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zazuko/rdf-validate-datatype.git"
},
"keywords": [
"rdf",
"validation",
"datatype"
],
"author": "Martin Maillard <martin.maillard@zazuko.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/rdf-validate-datatype/issues"
},
"homepage": "https://github.com/zazuko/rdf-validate-datatype#readme",
"dependencies": {
"@rdfjs/term-map": "^2.0.0",
"@tpluscode/rdf-ns-builders": "3 - 4"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rdfjs/data-model": "^2.0.1",
"@rdfjs/types": "^1.1.0",
"@tpluscode/eslint-config": "^0.4.4",
"@types/mocha": "^10.0.1",
"@types/rdfjs__data-model": "^2.0.4",
"@types/rdfjs__term-map": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"c8": "^8.0.1",
"eslint-import-resolver-typescript": "^3.6.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"mocha": {
"extension": "ts",
"loader": "ts-node/esm"
}
}