-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "ld2h",
"version": "2.3.2",
"description": "Expand tags by rendering local or remote RDF resources, recursively.",
"main": "src/ld2h.js",
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"chai": "^3.5.0",
"chai-webdriver": "^1.2.0",
"cross-var": "^1.1.0",
"css-loader": "^0.28.8",
"express": "^4.16.3",
"geckodriver": "^1.2.0",
"html-webpack-plugin": "^3.0.6",
"mkdirp": "^0.5.1",
"mocha": "^2.3.3",
"ncp": "^2.0.0",
"selenium-webdriver": "^3.0.1",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"rdf2h": "^2.3.0",
"rdfgraphnode-rdfext": "^1.6.0"
},
"scripts": {
"start": "webpack-dev-server --mode=development --hot --inline --content-base examples",
"build": "mkdirp distribution && ncp examples/ distribution/latest/ && webpack -p && cross-var \"ncp distribution/latest distribution/$npm_package_version\"",
"pretest": "yarn build",
"test": "node_modules/.bin/mocha"
},
"repository": "https://github.com/rdf2h/ld2h.git",
"keywords": [
"rdf",
"linked-data",
"rendering"
],
"author": "Reto Gmür",
"license": "Apache-2.0",
"homepage": "http://rdf2h.github.io/ld2h/"
}