-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "odrl-evaluator",
"version": "0.5.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",
"browser": {
"./dist/index.js": "./dist/index.browser.js",
"./dist/index.d.ts": "./dist/index.browser.d.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run makeRules && npm run makeShapes && tsc",
"makeRules": "ts-node scripts/MakeRules.ts ",
"makeShapes": "ts-node scripts/MakeShapes.ts ",
"clean": "rm -rf ./dist",
"demo:test-engine": "ts-node demo/test-n3-engine.ts",
"demo:test-evaluator": "ts-node demo/test-n3-evaluator.ts",
"demo:dynamic-policy": "ts-node demo/dynamic-policy.ts",
"prepare": "npm run build",
"release": "npm run build && npm publish --access public",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidLabResearch/ODRL-Evaluator.git"
},
"keywords": [
"Usage Control",
"ODRL"
],
"author": "Wout Slabbinck",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidLabResearch/ODRL-Evaluator/issues"
},
"homepage": "https://github.com/SolidLabResearch/ODRL-Evaluator#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/tmp": "^0.2.6",
"jest": "^29.7.0",
"jest-rdf": "^2.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@jeswr/pretty-turtle": "^1.8.2",
"@rdfjs/types": "^1.1.0",
"@types/n3": "^1.16.3",
"commit-and-tag-version": "^12.6.0",
"eyereasoner": "^16.18.4",
"n3": "^1.20.4",
"odrl-atomizer": "^0.1.2",
"rdf-isomorphic": "^1.3.1",
"rdf-lens": "^1.3.5",
"rdf-parse": "^3.0.0",
"rdf-store-stream": "^2.0.1",
"rdf-vocabulary": "^1.0.1",
"streamify-string": "^1.0.1",
"tmp": "^0.2.3",
"uuidv4": "^6.2.13"
}
}