forked from solid-contrib/solid-permissions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.31 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
{
"name": "solid-permissions",
"version": "0.7.0-beta.0",
"engines": {
"node": "^8.10"
},
"description": "Web Access Control based permissions library",
"main": "./src/index",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src -d lib",
"preversion": "npm test",
"postversion": "git push --follow-tags",
"prepublish": "npm test && npm run build",
"standard": "standard src/ test/",
"tape": "tape test/**/*.js",
"test": "npm run standard && npm run tape"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-permissions"
},
"keywords": [
"acl",
"access",
"control",
"solid",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"data",
"rest"
],
"author": "Dmitri Zagidulin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-permissions/issues"
},
"homepage": "https://github.com/solid/solid-permissions",
"dependencies": {
"solid-namespace": "0.1.0",
"debug": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"rdflib": "^0.17.0",
"sinon": "^6.0.1",
"solid-web-client": "0.3.2",
"standard": "^11.0.1",
"tape": "^4.9.1"
},
"standard": {
"globals": []
}
}