-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.51 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
60
61
62
63
64
{
"name": "@solid/acl-check",
"version": "0.4.5",
"engines": {
"node": ">=8.0"
},
"description": "Web Access Control check access function",
"main": "./lib/acl-check",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib",
"preversion": "npm test",
"postversion": "git push --follow-tags",
"prepublish": "npm test && npm run build",
"standard": "standard src/*.js",
"tape": "tape test/unit/check-access-test.js test/unit/access-denied-test.js test/unit/configure-logger-test.js test/unit/get-trusted-modes-for-origin-test.js",
"test": "npm run standard && npm run tape"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/acl-check"
},
"keywords": [
"acl",
"access",
"control",
"WAC",
"solid",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <[email protected]>",
"contributor": [
"Kjetil Kjernsmo <[email protected]>",
"Dmitri Zagidulin <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/acl-check/issues"
},
"homepage": "https://github.com/solid/acl-check",
"dependencies": {
"rdflib": "^2.1.7",
"solid-namespace": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"sinon": "^9.2.4",
"solid-auth-cli": "^1.0.15",
"solid-auth-client": "^2.5.5",
"standard": "^16.0.3",
"tape": "^5.1.1"
},
"standard": {
"globals": []
}
}