forked from SolidOS/solid-panes
-
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.8 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.8 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": "solid-app-set",
"version": "0.2.1",
"description": "Solid-compatible App set",
"main": "./index.js",
"scripts": {
"build-browserified": "browserify -r ./index.js:solidAppSet --exclude 'xhr2' > dist/mashup-node-2.js",
"build-minified": "browserify -r ./index.js:solid-ui --exclude 'xhr2' --exclude 'rdflib' -d -p [minifyify --no-map] > mashup/mashup-node.min.js",
"build": "npm run clean && mkdir -p dist/resources && npm run standard && npm run build-browserified && npm run build-minified",
"build-qunit-resources": "browserify -r ./test/resources/profile-ldnode.js:test-ldnode-profile --exclude 'xhr2' --exclude 'rdflib' > dist/resources/test-ldnode-profile.js",
"clean": "rm -rf dist/",
"standard": "standard *.js panes/*.js",
"tape": "tape test/unit/*.js",
"test": "npm run standard && npm run tape",
"qunit": "npm run standard && npm run build-browserified && open test/integration/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/linkeddata/solid-app-set"
},
"keywords": [
"solid",
"decentralized",
"widgets", "ui",
"web",
"rdf",
"ldp",
"linked", "panes", "app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/linkeddata/solid-app-set/issues"
},
"homepage": "https://github.com/linkeddata/solid-app-set",
"dependencies": {
"better-simple-slideshow": "git://github.com/linkeddata/better-simple-slideshow.git#gh-pages",
"solid-ui": "git://github.com/linkeddata/solid-ui.git"
},
"devDependencies": {
"browserify": "^13.0.0",
"minifyify": "^7.2.1",
"qunit": "^0.9.0",
"standard": "^5.4.1",
"tape": "^4.4.0"
},
"standard": {
"globals": [
"$rdf",
"tabulator",
"QUnit"
]
}
}