-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "rdfjs-c14n",
"version": "3.1.3",
"date": "2024-02-27",
"description": "Implementation in Typescript of the RDF Canonicalization Algorithm RDFC-1.0, on top of the RDF/JS interfaces",
"homepage": "https://github.com/iherman/rdfjs-c14n",
"repository": {
"type": "git",
"url": "https://github.com/iherman/rdfjs-c14n"
},
"bugs": {
"url": "https://github.com/iherman/rdfjs-c14n/issues"
},
"scripts": {
"test": "./node_modules/.bin/ts-node testing/run/main.ts",
"gtest": "./node_modules/.bin/ts-node testing/run/generator.ts",
"hash": "./node_modules/.bin/ts-node testing/run/hash.ts",
"manual": "./node_modules/.bin/ts-node testing/run/manual.ts",
"docs": "./node_modules/.bin/typedoc index.ts lib/*",
"dist": "tsc; (cd extras; tsc nodeConfiguration.ts); (cd lib; /bin/rm config.js)"
},
"keywords": [
"RDF",
"canonicalization"
],
"files": [
"LICENSE.md",
"README.md",
"CHANGES.md",
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=21.0.0"
},
"author": "Ivan Herman <[email protected]> (https://www.w3.org/People/Ivan/)",
"license": "W3C-20150513",
"dependencies": {
"@rdfjs/types": "^1.1.0",
"array-permutation": "^0.2.0",
"event-emitter-promisify": "^1.1.0",
"n3": "^1.16.3",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/n3": "^1.10.4",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"commander": "^2.12.2",
"eslint": "^8.42.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.1.3"
}
}