forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.46 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.46 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": "solid-ui",
"version": "1.2.2",
"description": "UI library for writing Solid read-write-web applications",
"main": "./lib/index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"build-lib": "babel --no-babelrc src -d lib",
"build": "npm run build-lib",
"postversion": "git push origin master --follow-tags",
"prepublishOnly": "npm run build",
"standard": "standard src",
"test": "npm run standard",
"watch": "babel --no-babelrc src --out-dir lib --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-ui"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"contributors": [
"Daniel Friedman <danielf@mit.edu>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-ui/issues"
},
"homepage": "https://github.com/solid/solid-ui",
"dependencies": {
"escape-html": "^1.0.3",
"mime-types": "^2.1.24",
"node-uuid": "^1.4.7",
"rdflib": "^1.0.4",
"solid-auth-client": "^2.3.1",
"solid-auth-tls": "^0.1.2",
"solid-namespace": "0.2.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": ">=1.7.0",
"standard": "^10.0.2"
},
"standard": {
"globals": [
"$rdf",
"tabulator",
"QUnit",
"$SolidTestEnvironment",
"AudioContext"
]
}
}