jsonld-vis
Version:
Turns JSON-LD into pretty graphs
60 lines (59 loc) • 1.36 kB
JSON
{
"name": "jsonld-vis",
"version": "2.1.0",
"description": "Turns JSON-LD into pretty graphs",
"style": "src/index.css",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"format": "prettier --single-quote --write \"{src,test}/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=\"production\" babel src/ -d dist/",
"watch": "watchify example/index.js -dv -o example/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scienceai/jsonld-vis.git"
},
"keywords": [
"JSONLD",
"JSON-LD",
"d3",
"visualization",
"graph",
"linked",
"data"
],
"author": "Leon Chen",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scienceai/jsonld-vis/issues"
},
"homepage": "https://github.com/scienceai/jsonld-vis#readme",
"eslintConfig": {
"extends": "scienceai"
},
"babel": {
"presets": [
"es2015"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "7.3.0",
"browserify": "^14.4.0",
"eslint-config-scienceai": "^3.3.0",
"prettier": "^1.5.3",
"watchify": "^3.9.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"d3": "^3.5.17",
"d3-tip": "0.6.7"
}
}