UNPKG

2.2 kBJSONView Raw
1{
2 "name": "@accordproject/cicero-server",
3 "version": "0.22.2",
4 "description": "Cicero Server - wraps the Cicero Engine and exposes it as a RESTful service",
5 "engines": {
6 "node": ">=12",
7 "npm": ">=5"
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 "directory": "packages/cicero-server"
30 },
31 "keywords": [
32 "accord",
33 "legal",
34 "tech",
35 "smart",
36 "contract"
37 ],
38 "author": "clause.io",
39 "license": "Apache-2.0",
40 "bugs": {
41 "url": "https://github.com/accordproject/cicero/issues"
42 },
43 "homepage": "https://github.com/accordproject/cicero#readme",
44 "devDependencies": {
45 "chai": "4.2.0",
46 "chai-as-promised": "7.1.1",
47 "chai-things": "0.2.0",
48 "decache": "4.4.0",
49 "eslint": "8.1.0",
50 "jsdoc": "^3.6.7",
51 "license-check": "1.1.5",
52 "mocha": "6.1.4",
53 "mockery": "2.0.0",
54 "nyc": "14.1.1",
55 "sinon": "4.0.1",
56 "supertest": "3.0.0"
57 },
58 "dependencies": {
59 "@accordproject/cicero-core": "0.22.2",
60 "@accordproject/cicero-engine": "0.22.2",
61 "express": "4.16.2"
62 },
63 "license-check-config": {
64 "src": [
65 "**/*.js",
66 "!./app.js",
67 "!./test/data/**/*",
68 "!./coverage/**/*",
69 "!./node_modules/**/*",
70 "!./out/**/*"
71 ],
72 "path": "header.txt",
73 "blocking": true,
74 "logInfo": false,
75 "logError": true
76 },
77 "nyc": {
78 "produce-source-map": "true",
79 "sourceMap": "inline",
80 "reporter": [
81 "lcov",
82 "text-summary",
83 "html",
84 "json"
85 ],
86 "include": [
87 "app.js"
88 ],
89 "exclude": [],
90 "all": true,
91 "check-coverage": true,
92 "statements": 93,
93 "branches": 70,
94 "functions": 92,
95 "lines": 93
96 },
97 "gitHead": "514fd02f46752e018aedb77e1716a212ef4a59e5"
98}