forked from SolidOS/mashlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (67 loc) · 2.11 KB
/
package.json
File metadata and controls
69 lines (67 loc) · 2.11 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
67
68
69
{
"name": "mashlib",
"version": "0.2.1",
"description": "Data mashup library",
"main": "./index.js",
"scripts": {
"build-browserified": "browserify -r ./index.js:mashlib --debug -t babelify --exclude 'xhr2' > dist/mashlib-prealpha.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",
"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"
},
"browserify___IGNORE": {
"transform": [["babelify", { "presets": ["es2015"] , "plugins": [ "transform-es2015-block-scoping"] }]]
},
"presets__IGNORE": [
"es2015",
"transform-es2015-block-scoping"
],
"repository": {
"type": "git",
"url": "https://github.com/linkeddata/mashlib"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/linkeddata/mashlib/issues"
},
"homepage": "https://github.com/linkeddata/mashlib",
"dependencies": {
"rdflib": "git://github.com/linkeddata/rdflib.js.git",
"solid-ui": "git://github.com/linkeddata/solid-ui.git",
"solid-app-set": "https://github.com/linkeddata/solid-app-set.git"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"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"
]
}
}