-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "odrl-test-suite",
"version": "0.0.1",
"description": "An open implementation of an ODRL Evaluator that evaluates ODRL policies by generating Compliance Reports",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && npm run copy-files",
"clean": "rm -rf ./dist",
"copy-files": "cp -r ./src/rules/ ./dist/",
"demo:test-suite": "ts-node demo/test-suite.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidLabResearch/ODRL-Test-Suite.git"
},
"keywords": [
"Usage Control",
"ODRL"
],
"author": "Wout Slabbinck",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidLabResearch/ODRL-Test-Suite/issues"
},
"homepage": "https://github.com/SolidLabResearch/ODRL-Test-Suite#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@rdfjs/types": "^1.1.0",
"@types/n3": "1.16.3",
"n3": "1.20.4",
"odrl-evaluator": "^0.1.0",
"rdf-isomorphic": "^1.3.1",
"rdf-parse": "^3.0.0",
"rdf-store-stream": "^2.0.1",
"streamify-string": "^1.0.1"
}
}