UNPKG

2.23 kBJSONView Raw
1{
2 "name": "@accordproject/cicero-cli",
3 "version": "0.12.0",
4 "description": "Cicero CLI",
5 "engines": {
6 "node": ">=8",
7 "npm": ">=3"
8 },
9 "publishConfig": {
10 "access": "public"
11 },
12 "bin": {
13 "cicero": "./index.js"
14 },
15 "main": "index.js",
16 "scripts": {
17 "pretest": "npm run lint",
18 "lint": "eslint .",
19 "postlint": "npm run licchk",
20 "licchk": "license-check",
21 "test:cucumber": "cucumber-js test/features --require .cucumber.js --world-parameters '{\"rootdir\":\"./test\"}'",
22 "test:mocha": "mocha",
23 "test:all": "npm run test:mocha && npm run test:cucumber",
24 "test:cov": "nyc npm run test:all",
25 "test": "npm run test:all && npm run test:cov"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/accordproject/cicero.git"
30 },
31 "keywords": [
32 "clause",
33 "legal",
34 "tech"
35 ],
36 "author": "clause.io",
37 "license": "Apache-2.0",
38 "bugs": {
39 "url": "https://github.com/accordproject/cicero/issues"
40 },
41 "homepage": "https://github.com/accordproject/cicero#readme",
42 "devDependencies": {
43 "chai": "4.2.0",
44 "chai-as-promised": "7.1.1",
45 "chai-things": "0.2.0",
46 "cucumber": "^5.1.0",
47 "eslint": "4.19.1",
48 "license-check": "1.1.5",
49 "mocha": "5.2.0",
50 "nyc": "13.3.0",
51 "tmp-promise": "1.0.4"
52 },
53 "dependencies": {
54 "@accordproject/cicero-core": "0.12.0",
55 "@accordproject/cicero-engine": "0.12.0",
56 "@accordproject/cicero-tools": "0.12.0",
57 "@accordproject/cicero-test": "0.12.0",
58 "composer-concerto": "0.70.2",
59 "uuid": "3.3.2",
60 "yargs": "9.0.1"
61 },
62 "license-check-config": {
63 "src": [
64 "**/*.js",
65 "!./test/data/**/*",
66 "!./coverage/**/*",
67 "!./node_modules/**/*",
68 "!./out/**/*",
69 "!index.js"
70 ],
71 "path": "header.txt",
72 "blocking": true,
73 "logInfo": false,
74 "logError": true
75 },
76 "nyc": {
77 "produce-source-map": "true",
78 "sourceMap": "inline",
79 "reporter": [
80 "lcov",
81 "text-summary",
82 "html",
83 "json"
84 ],
85 "include": [
86 "lib/**/*.js"
87 ],
88 "exclude": [],
89 "all": true,
90 "check-coverage": true,
91 "statements": 0,
92 "branches": 0,
93 "functions": 0,
94 "lines": 0
95 }
96}
\No newline at end of file