UNPKG

2.16 kBJSONView Raw
1{
2 "name": "@accordproject/cicero-server",
3 "version": "0.21.0",
4 "description": "Cicero Server - wraps the Cicero Engine and exposes it as a RESTful service",
5 "engines": {
6 "node": ">=8",
7 "npm": ">=3"
8 },
9 "publishConfig": {
10 "access": "public"
11 },
12 "bin": {
13 "cicero-server": "./app.js"
14 },
15 "main": "app.js",
16 "scripts": {
17 "start": "node app.js",
18 "pretest": "npm run lint",
19 "lint": "eslint .",
20 "postlint": "npm run licchk",
21 "licchk": "license-check",
22 "test": "mocha",
23 "test:windows": "echo 'No Windows tests for this package'",
24 "test:cov": "nyc npm run test"
25 },
26 "repository": {
27 "type": "git",
28 "url": "git+https://github.com/accordproject/cicero.git"
29 },
30 "keywords": [
31 "accord",
32 "legal",
33 "tech",
34 "smart",
35 "contract"
36 ],
37 "author": "clause.io",
38 "license": "Apache-2.0",
39 "bugs": {
40 "url": "https://github.com/accordproject/cicero/issues"
41 },
42 "homepage": "https://github.com/accordproject/cicero#readme",
43 "devDependencies": {
44 "chai": "4.2.0",
45 "chai-as-promised": "7.1.1",
46 "chai-things": "0.2.0",
47 "decache": "4.4.0",
48 "eslint": "6.0.1",
49 "jsdoc": "3.6.3",
50 "license-check": "1.1.5",
51 "mocha": "6.1.4",
52 "mockery": "2.0.0",
53 "nyc": "14.1.1",
54 "sinon": "4.0.1",
55 "supertest": "3.0.0"
56 },
57 "dependencies": {
58 "@accordproject/cicero-core": "0.21.0",
59 "@accordproject/cicero-engine": "0.21.0",
60 "express": "4.16.2"
61 },
62 "license-check-config": {
63 "src": [
64 "**/*.js",
65 "!./app.js",
66 "!./test/data/**/*",
67 "!./coverage/**/*",
68 "!./node_modules/**/*",
69 "!./out/**/*"
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 "app.js"
87 ],
88 "exclude": [],
89 "all": true,
90 "check-coverage": true,
91 "statements": 93,
92 "branches": 70,
93 "functions": 92,
94 "lines": 93
95 },
96 "gitHead": "514fd02f46752e018aedb77e1716a212ef4a59e5"
97}
\No newline at end of file