@accordproject/cicero-cli
Version:
101 lines (100 loc) • 2.42 kB
JSON
{
"name": "@accordproject/cicero-cli",
"version": "0.24.0",
"description": "Cicero CLI",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"publishConfig": {
"access": "public"
},
"bin": {
"cicero": "./index.js"
},
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"lint": "eslint .",
"postlint": "npm run licchk",
"licchk": "license-check",
"test:cucumber": "cucumber-js test/features --require .cucumber.js --world-parameters \"{\\\"rootdir\\\":\\\"./test\\\"}\"",
"test:mocha": "mocha --timeout 30000",
"test:all": "npm run test:mocha && npm run test:cucumber",
"test:windows": "npm run test:all",
"test:cov": "nyc npm run test",
"test": "npm run test:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/accordproject/cicero.git",
"directory": "packages/cicero-cli"
},
"keywords": [
"clause",
"legal",
"tech"
],
"author": "clause.io",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/accordproject/cicero/issues"
},
"homepage": "https://www.accordproject.org/projects/cicero",
"dependencies": {
"@accordproject/cicero-core": "0.24.0",
"@accordproject/cicero-engine": "0.24.0",
"@accordproject/cicero-test": "0.24.0",
"@accordproject/cicero-tools": "0.24.0",
"@accordproject/concerto-util": "3.0.0",
"mkdirp": "1.0.4",
"yargs": "17.3.1"
},
"devDependencies": {
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-things": "0.2.0",
"cucumber": "5.1.0",
"eslint": "^8.23.1",
"jsdoc": "^3.6.10",
"license-check": "1.1.5",
"mocha": "^8.4.0",
"nyc": "15.1.0",
"tmp-promise": "2.0.2"
},
"license-check-config": {
"src": [
"**/*.js",
"!./test/data/**/*",
"!./coverage/**/*",
"!./node_modules/**/*",
"!./out/**/*",
"!index.js"
],
"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": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"gitHead": "514fd02f46752e018aedb77e1716a212ef4a59e5"
}