UNPKG

cicero-engine

Version:

Cicero Engine - Node.js VM based implementation of Accord Protcol Template Specification execution

92 lines (91 loc) 2 kB
{ "name": "cicero-engine", "version": "0.2.46", "description": "Cicero Engine - Node.js VM based implementation of Accord Protcol Template Specification execution", "engines": { "node": ">=8", "npm": ">=3" }, "main": "index.js", "scripts": { "pretest": "npm run lint", "lint": "eslint .", "postlint": "npm run licchk", "licchk": "license-check", "test": "mocha && nyc mocha" }, "repository": { "type": "git", "url": "git+https://github.com/accordproject/cicero.git" }, "keywords": [ "accord", "legal", "tech", "smart", "contract" ], "author": "clause.io", "license": "Apache-2.0", "bugs": { "url": "https://github.com/accordproject/cicero/issues" }, "homepage": "https://github.com/accordproject/cicero#readme", "devDependencies": { "chai": "^3.5.0", "chai-as-promised": "^6.0.0", "chai-things": "^0.2.0", "eslint": "^4.6.1", "jsdoc": "^3.5.5", "license-check": "^1.1.5", "mocha": "^3.4.2", "mockery": "^2.0.0", "nyc": "^11.3.0", "sinon": "^4.0.1" }, "dependencies": { "cicero-core": "^0.2.46", "composer-common": "0.17.4", "config": "^1.24.0", "debug": "^2.6.2", "jura-compiler": "^0.0.19", "jura-engine": "^0.0.19", "moment": "^2.20.1", "nearley": "^2.12.1", "vm2": "^3.5.0", "winston": "^2.3.1" }, "license-check-config": { "src": [ "**/*.js", "!./test/data/**/*", "!./coverage/**/*", "!./node_modules/**/*", "!./out/**/*" ], "path": "header.txt", "blocking": true, "logInfo": false, "logError": true }, "nyc": { "produce-source-map": "true", "sourceMap": "inline", "reporter": [ "lcov", "text-summary", "html", "json" ], "include": [ "lib/**/*.js" ], "exclude": [], "all": true, "check-coverage": true, "statements": 93, "branches": 70, "functions": 92, "lines": 93 } }