39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "cenode",
|
|
"version": "3.0.9",
|
|
"description": "A pure JavaScript implementation of the ITA project's CEStore - called CENode. CENode is able to understand the basic sentence types parsed by the CEStore, such as conceptualising and instance creation and modification.",
|
|
"homepage": "http://cenode.io",
|
|
"license": "Apache-2.0",
|
|
"author": "Will Webberley & Alun Preece",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/flyingsparx/CENode"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"models",
|
|
"README.md",
|
|
"LICENCE"
|
|
],
|
|
"main": "src/CENode.js",
|
|
"scripts": {
|
|
"build-web": "babel src -d lib && webpack --config .webpackrc.js && mv dist/CENode.js dist/cenode.js && mv dist/CEModels.js dist/models.js && uglifyjs dist/cenode.js --mangle -o dist/cenode.min.js --source-map dist/cenode.js.map",
|
|
"lint-fix": "eslint src/*.js --fix",
|
|
"lint": "eslint src/*.js",
|
|
"test": "mocha",
|
|
"prepublish": "npm test && npm run lint && npm run build-web"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.18.0",
|
|
"babel-preset-latest": "^6.16.0",
|
|
"eslint": "^3.12.2",
|
|
"eslint-config-airbnb-base": "^11.0.0",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"expect.js": "^0.3.1",
|
|
"mocha": "^3.2.0",
|
|
"uglify-js": "^2.7.5",
|
|
"webpack": "^1.14.0"
|
|
}
|
|
}
|