This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
{
"name": "askos",
"version": "0.0.1",
"description": "A SKOS browser and editor.",
"repository": "https://github.com/WileyLabs/askos",
"main": "index.js",
"browser": {
"vue": "vue/dist/vue.common"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"level-js": "^5.0.1",
"leveldown": "^5.4.1",
"levelgraph": "^2.0.0",
"levelgraph-jsonld": "^1.0.3",
"levelgraph-n3": "^2.0.0",
"levelup": "^4.3.2",
"n3": "^0.10.0",
"vue": "^2.3.4",
"vuex": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-preset-env": "^1.6.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"deep-diff": "^0.3.8",
"http-server": "^0.12.1",
"npm-run-all": "^4.0.2",
"vueify": "^9.4.1",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
"babelify",
"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",
"serve-secure": "http-server -c 1 -a localhost -p 8888 --ssl",
"dev": "npm-run-all --parallel watch serve",
"dev-secure": "npm-run-all --parallel watch serve-secure",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"SKOS",
"Vue.js",
"LevelGraph",
"JSON-LD",
"Turtle",
"RDF"
],
"author": "John Wiley & Sons, Inc.",
"contributors": [
{
"name": "Benjamin Young",
"email": "byoung2@wiley.com"
}
],
"license": "MIT"
}