UNPKG

modelld

Version:

A JavaScript API for selecting and manipulating linked data subgraphs

65 lines (64 loc) 1.93 kB
{ "name": "modelld", "version": "0.11.1", "description": "A JavaScript API for selecting and manipulating linked data subgraphs", "main": "lib/index.js", "files": [ "lib", "dist" ], "scripts": { "build": "npm run build:lib && npm run build:dist", "build:lib": "babel src -d lib", "build:dist": "webpack --progress --colors --optimize-minimize --optimize-occurrence-order --optimize-dedupe", "lint": "standard src/**.js test/**.js", "pretest": "npm run lint", "posttest": "npm run coverage:check", "test": "nyc mocha --compilers js:babel-core/register test/**.spec.js", "test:develop": "mocha -d -w -G --compilers js:babel-core/register test/*.spec.js", "coverage:check": "nyc check-coverage --lines 98", "coverage:report": "nyc report --repoprter=text-lcov --reporter=html", "coverage:coveralls": "nyc report --reporter=text-lcov | coveralls", "preversion": "npm test", "postversion": "git push --follow-tags", "prepublish": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/dan-f/modelld.git" }, "keywords": [ "linkeddata", "rdf", "semantic", "web", "solid" ], "author": "Daniel Friedman", "license": "MIT", "bugs": { "url": "https://github.com/dan-f/modelld/issues" }, "homepage": "https://github.com/dan-f/modelld#readme", "devDependencies": { "babel-cli": "^6.11.4", "babel-core": "^6.13.2", "babel-loader": "^6.2.5", "babel-plugin-transform-object-rest-spread": "^6.8.0", "babel-preset-es2015": "^6.13.2", "coveralls": "^2.11.12", "expect": "^1.20.2", "mocha": "^3.0.2", "nyc": "^8.1.0", "sinon": "^1.17.5", "solid-namespace": "^0.1.0", "standard": "^7.1.2", "webpack": "^1.13.2" }, "dependencies": { "immutable": "^3.8.1", "lodash": "^4.14.2", "node-uuid": "^1.4.7", "rdflib": "^0.12.3" } }