forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.35 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-ui",
"version": "0.11.5",
"description": "UI library for writing Solid read-write-web applications",
"main": "./lib/index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"build-lib": "babel src -d lib",
"build": "npm run build-lib",
"postversion": "git push origin master --follow-tags",
"prepublishOnly": "npm run build",
"standard": "standard",
"test": "npm run standard"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-ui"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <[email protected]>",
"contributors": [
"Daniel Friedman <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-ui/issues"
},
"homepage": "https://github.com/solid/solid-ui",
"dependencies": {
"escape-html": "^1.0.3",
"node-uuid": "^1.4.7",
"rdflib": ">=0.17.0",
"regenerate": "^1.3.2",
"solid-auth-client": "^2.2.6",
"solid-auth-tls": "^0.1.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"standard": "^10.0.2"
},
"standard": {
"globals": [
"$rdf",
"tabulator",
"QUnit",
"$SolidTestEnvironment",
"AudioContext"
]
}
}