-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "odrl-test-suite",
"version": "0.2.0",
"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 && tsc && npm run createIndex",
"createIndex": "npx ts-node scripts/createIndex.ts",
"clean": "rm -rf ./dist",
"demo:test-suite": "ts-node demo/test-suite.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-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",
"dotenv": "^17.0.0",
"n3": "1.20.4",
"odrl-evaluator": "^0.4.0",
"rdf-isomorphic": "^1.3.1",
"rdf-parse": "^3.0.0",
"rdf-store-stream": "^2.0.1",
"streamify-string": "^1.0.1"
}
}