UNPKG

1.79 kBJSONView Raw
1{
2 "name": "@accordproject/cicero-common",
3 "version": "0.2.52",
4 "description": "Cicero Common - implementation of Accord Protocol Template Specification",
5 "engines": {
6 "node": ">=8",
7 "npm": ">=3"
8 },
9 "publishConfig": {
10 "access": "public"
11 },
12 "scripts": {
13 "pretest": "npm run lint",
14 "lint": "eslint .",
15 "postlint": "npm run licchk",
16 "licchk": "license-check",
17 "test": "mocha && nyc mocha"
18 },
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/accordproject/cicero.git"
22 },
23 "keywords": [
24 "accord",
25 "cicero",
26 "smart",
27 "contract"
28 ],
29 "author": "accordproject.org",
30 "license": "Apache-2.0",
31 "bugs": {
32 "url": "https://github.com/accordproject/cicero/issues"
33 },
34 "homepage": "https://github.com/accordproject/cicero#readme",
35 "devDependencies": {
36 "chai": "^3.5.0",
37 "chai-as-promised": "^6.0.0",
38 "chai-things": "^0.2.0",
39 "eslint": "^4.19.1",
40 "license-check": "^1.1.5",
41 "mocha": "^5.0.5",
42 "mockery": "^2.0.0",
43 "nyc": "^11.6.0",
44 "sinon": "^4.0.1"
45 },
46 "dependencies": {
47 "composer-common": "0.17.4",
48 "config": "^1.24.0",
49 "debug": "^2.6.2"
50 },
51 "license-check-config": {
52 "src": [
53 "**/*.js",
54 "!./test/data/**/*",
55 "!./coverage/**/*",
56 "!./node_modules/**/*",
57 "!./out/**/*"
58 ],
59 "path": "header.txt",
60 "blocking": true,
61 "logInfo": false,
62 "logError": true
63 },
64 "nyc": {
65 "produce-source-map": "true",
66 "sourceMap": "inline",
67 "reporter": [
68 "lcov",
69 "text-summary",
70 "html",
71 "json"
72 ],
73 "include": [
74 "lib/**/*.js"
75 ],
76 "exclude": [],
77 "all": true,
78 "check-coverage": true,
79 "statements": 0,
80 "branches": 0,
81 "functions": 0,
82 "lines": 0
83 }
84}