-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 KB
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
{
"name": "@rdfjs/wrapper",
"version": "0.34.0",
"description": "RDF/JS object mapping library",
"main": "dist/mod.js",
"type": "module",
"types": "./dist/mod.d.ts",
"exports": {
".": "./dist/mod.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rdfjs/wrapper.git"
},
"scripts": {
"start": "npm test",
"build:test": "rimraf dist test/dist && tsc && tsc -p test",
"test": "npm run build:test && node --experimental-test-coverage --test \"**/*.test.js\""
},
"keywords": [
"rdf",
"object-oriented",
"rdfjs",
"mapping",
"wrapper"
],
"contributors": [
"Matthieu Bosquet (https://github.com/matthieubosquet)",
"Samu Lang (https://github.com/langsamu)"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rdfjs/types": "^2",
"@types/node": "^25",
"typescript": "^6",
"@types/n3": "^1",
"n3": "^2",
"typedoc": "^0.28.18",
"typedoc-plugin-mdn-links": "^5.1.1",
"rimraf": "^6.0.1"
},
"engines": {
"node": ">=24.0.0"
}
}