forked from solid-contrib/solid-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.57 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "solid-client",
"version": "0.22.4",
"description": "Common library for writing Solid read-write-web applications",
"main": "./index.js",
"files": [
"index.js",
"config.js",
"lib",
"dist"
],
"scripts": {
"build-full": "webpack --progress --config webpack.config.js --output-filename solid-client-full.js",
"build-with-rdflib": "webpack --progress --colors --optimize-minimize --optimize-occurrence-order --optimize-dedupe --config webpack.config.js",
"build-without-rdflib": "webpack --progress --colors --optimize-minimize --optimize-occurrence-order --optimize-dedupe --config webpack-no-rdflib.config.js",
"build-qunit-resources": "npm run clean && mkdir -p dist/resources && npm run build-full && browserify -r ./test/resources/profile-minimal.js:test-minimal-profile -o dist/resources/test-minimal-profile.js && browserify -r ./test/resources/profile-private.js:test-minimal-prefs -o dist/resources/test-minimal-prefs.js",
"build": "npm run clean && mkdir dist && npm run build-with-rdflib && npm run build-without-rdflib",
"clean": "rm -rf dist/",
"standard": "standard lib/*",
"tape": "tape test/unit/*.js",
"test": "npm run standard && npm run tape",
"qunit": "npm run build-qunit-resources && open test/integration/index.html",
"preversion": "npm test",
"postversion": "git push --follow-tags",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-client"
},
"keywords": [
"solid",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Andrei Sambra <andrei@fcns.eu>",
"maintainers": [
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-client/issues"
},
"homepage": "https://github.com/solid/solid-client",
"dependencies": {
"rdflib": "^0.12.1",
"shorthash": "0.0.2",
"solid-auth-tls": "0.0.4",
"solid-namespace": "0.0.1",
"solid-permissions": "^0.2.1",
"solid-web-client": "0.0.8"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"blue-tape": "^0.2.0",
"json-loader": "^0.5.4",
"qunit": "^0.9.0",
"standard": "^5.4.1",
"tape": "^4.4.0",
"webpack": "^1.13.1"
},
"standard": {
"globals": [
"$rdf",
"SolidClient",
"tabulator",
"QUnit"
]
}
}