UNPKG

2.38 kBJSONView Raw
1{
2 "name": "@accordproject/ergo-cli",
3 "version": "0.21.3",
4 "description": "Ergo CLI",
5 "engines": {
6 "node": ">=8",
7 "npm": ">=3"
8 },
9 "publishConfig": {
10 "access": "public"
11 },
12 "bin": {
13 "ergo": "./index.js",
14 "ergotop": "./ergotop.js"
15 },
16 "main": "index.js",
17 "scripts": {
18 "pretest": "npm run lint",
19 "lint": "eslint .",
20 "postlint": "npm run licchk",
21 "licchk": "license-check",
22 "test:mocha": "mocha",
23 "test:cucumber": "cucumber-js test/features --require .cucumber.js --world-parameters \"{\\\"rootdir\\\":\\\"./test\\\"}\"",
24 "test": "npm run test:mocha && npm run test:cucumber",
25 "test:cov": "nyc npm run test"
26 },
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/accordproject/ergo"
30 },
31 "keywords": [
32 "accord project",
33 "contracts",
34 "smart",
35 "legal",
36 "tech"
37 ],
38 "author": "clause.io",
39 "license": "Apache-2.0",
40 "bugs": {
41 "url": "https://github.com/accordproject/cicero/issues"
42 },
43 "homepage": "https://www.accordproject.org/projects/ergo",
44 "dependencies": {
45 "@accordproject/ergo-compiler": "0.21.3",
46 "@accordproject/ergo-engine": "0.21.3",
47 "@accordproject/ergo-test": "0.21.3",
48 "chalk": "2.4.1",
49 "jsome": "2.5.0",
50 "moment-mini": "2.22.1",
51 "winston": "3.2.1",
52 "yargs": "13.2.4"
53 },
54 "devDependencies": {
55 "chai": "4.2.0",
56 "chai-as-promised": "7.1.1",
57 "chai-things": "0.2.0",
58 "cucumber": "5.1.0",
59 "eslint": "6.0.1",
60 "jsdoc": "3.6.3",
61 "license-check": "1.1.5",
62 "mocha": "5.2.0",
63 "nyc": "13.3.0"
64 },
65 "license-check-config": {
66 "src": [
67 "**/*.js",
68 "!./test/data/**/*",
69 "!./coverage/**/*",
70 "!./node_modules/**/*",
71 "!./out/**/*",
72 "!./index.js",
73 "!./ergotop.js",
74 "!extracted/ergoccore.js",
75 "!extracted/ergotopcore.js"
76 ],
77 "path": "header.txt",
78 "blocking": true,
79 "logInfo": false,
80 "logError": true
81 },
82 "nyc": {
83 "produce-source-map": "true",
84 "sourceMap": "inline",
85 "reporter": [
86 "lcov",
87 "text-summary",
88 "html",
89 "json"
90 ],
91 "include": [
92 "lib/**/commands.js"
93 ],
94 "exclude": [],
95 "all": true,
96 "check-coverage": true,
97 "statements": 100,
98 "branches": 100,
99 "functions": 100,
100 "lines": 100
101 },
102 "gitHead": "bf65386e8590dff56f8b9bc0bb657263ff049437"
103}
\No newline at end of file