UNPKG

1.69 kBJSONView Raw
1{
2 "name": "@accordproject/cicero-common",
3 "version": "0.3.16",
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.1.1",
42 "nyc": "11.7.2"
43 },
44 "dependencies": {
45 "composer-common": "0.19.6"
46 },
47 "license-check-config": {
48 "src": [
49 "**/*.js",
50 "!./test/data/**/*",
51 "!./coverage/**/*",
52 "!./node_modules/**/*",
53 "!./out/**/*"
54 ],
55 "path": "header.txt",
56 "blocking": true,
57 "logInfo": false,
58 "logError": true
59 },
60 "nyc": {
61 "produce-source-map": "true",
62 "sourceMap": "inline",
63 "reporter": [
64 "lcov",
65 "text-summary",
66 "html",
67 "json"
68 ],
69 "include": [
70 "lib/**/*.js"
71 ],
72 "exclude": [],
73 "all": true,
74 "check-coverage": true,
75 "statements": 0,
76 "branches": 0,
77 "functions": 0,
78 "lines": 0
79 }
80}