-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
65
{
"name": "levelgraph-playground",
"version": "2.0.1",
"description": "Playing with levelgraph.io and friends.",
"repository": "https://github.com/BigBlueHat/levelgraph",
"main": "index.js",
"dependencies": {
"codemirror": "^5.22.2",
"codemirror-jsonld-hint": "github:WileyLabs/codemirror-jsonld-hint",
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"level-js": "^2.2.4",
"levelgraph": "^2.0.0",
"levelgraph-jsonld": "^1.0.3",
"levelgraph-n3": "^2.0.0",
"levelup": "^1.3.3",
"vue": "^2.1.8"
},
"browser": {
"vue": "vue/dist/vue.common"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.3.0",
"http-server": "^0.10.0",
"node-forge": "^0.7.1",
"npm-run-all": "^4.0.2",
"vueify": "^9.4.0",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
"vueify"
]
},
"scripts": {
"build": "browserify index.js --debug -o dist/index.js",
"watch": "watchify index.js -vdo dist/index.js",
"serve": "http-server -c 1 -a localhost -p 8888 --ssl",
"dev": "npm-run-all --parallel watch serve",
"cert": "node ./scripts/create-cert.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Graph",
"Database",
"RDF",
"JSON-LD",
"webby",
"triples",
"query",
"hexastore",
"demo",
"playground"
],
"author": "John Wiley & Sons, Inc.",
"contributors": [
{
"name": "BigBlueHat",
"email": "[email protected]"
}
],
"license": "Apache-2.0"
}