UNPKG

2.05 kBJSONView Raw
1{
2 "name": "@accordproject/cicero-engine",
3 "version": "0.21.0",
4 "description": "Cicero Engine - Node.js VM based implementation of Accord Protcol Template Specification execution",
5 "engines": {
6 "node": ">=8",
7 "npm": ">=3"
8 },
9 "publishConfig": {
10 "access": "public"
11 },
12 "main": "index.js",
13 "scripts": {
14 "pretest": "npm run lint",
15 "lint": "eslint .",
16 "postlint": "npm run licchk",
17 "licchk": "license-check",
18 "test:mocha": "mocha",
19 "test:windows": "npm run test:all",
20 "test:all": "npm run test:mocha",
21 "test:cov": "nyc npm run test:all",
22 "test": "npm run test:all"
23 },
24 "repository": {
25 "type": "git",
26 "url": "git+https://github.com/accordproject/cicero.git"
27 },
28 "keywords": [
29 "accord",
30 "legal",
31 "tech",
32 "smart",
33 "contract"
34 ],
35 "author": "clause.io",
36 "license": "Apache-2.0",
37 "bugs": {
38 "url": "https://github.com/accordproject/cicero/issues"
39 },
40 "homepage": "https://github.com/accordproject/cicero#readme",
41 "devDependencies": {
42 "chai": "4.2.0",
43 "chai-things": "0.2.0",
44 "cucumber": "5.1.0",
45 "eslint": "6.0.1",
46 "jsdoc": "3.6.3",
47 "license-check": "1.1.5",
48 "mocha": "6.1.4",
49 "nyc": "14.1.1"
50 },
51 "dependencies": {
52 "@accordproject/cicero-core": "0.21.0",
53 "@accordproject/ergo-engine": "^0.21.0",
54 "moment-mini": "2.22.1"
55 },
56 "license-check-config": {
57 "src": [
58 "**/*.js",
59 "!./test/data/**/*",
60 "!./coverage/**/*",
61 "!./node_modules/**/*",
62 "!./out/**/*"
63 ],
64 "path": "header.txt",
65 "blocking": true,
66 "logInfo": false,
67 "logError": true
68 },
69 "nyc": {
70 "produce-source-map": "true",
71 "sourceMap": "inline",
72 "reporter": [
73 "lcov",
74 "text-summary",
75 "html",
76 "json"
77 ],
78 "include": [
79 "lib/**/*.js"
80 ],
81 "exclude": [],
82 "all": true,
83 "check-coverage": true,
84 "statements": 93,
85 "branches": 70,
86 "functions": 92,
87 "lines": 93
88 },
89 "gitHead": "514fd02f46752e018aedb77e1716a212ef4a59e5"
90}
\No newline at end of file