UNPKG

3.6 kBJSONView Raw
1{
2 "name": "@accordproject/concerto",
3 "version": "0.80.3-20190927160708",
4 "description": "Concerto Modeling Language",
5 "engines": {
6 "node": ">=8",
7 "npm": ">=5"
8 },
9 "main": "index.js",
10 "typings": "index.d.ts",
11 "scripts": {
12 "prepublishOnly": "webpack --config webpack.config.js --mode production",
13 "prepare": "pegjs ./lib/introspect/parser.pegjs",
14 "lint": "eslint .",
15 "postlint": "npm run licchk",
16 "licchk": "license-check-and-add",
17 "postlicchk": "npm run doc",
18 "doc": "jsdoc --pedantic --recurse -c jsdoc.json",
19 "test": "node ./scripts/api-changelog.js && nyc mocha --recursive -t 10000",
20 "test:watch": "nyc mocha --watch --recursive -t 10000",
21 "mocha": "mocha --recursive -t 10000",
22 "nyc": "nyc mocha --recursive -t 10000",
23 "pkgcheck": "node ./scripts/pkgcheck.js",
24 "pkgstamp": "node ./scripts/pkgstamp.js",
25 "pkgbump": "node ./scripts/pkgbump.js && node ./scripts/pkgcheck.js --fix",
26 "pkgset": "node ./scripts/pkgset.js",
27 "depcheck": "node ./scripts/depcheck.js"
28 },
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/accordproject/concerto.git"
32 },
33 "keywords": [
34 "blockchain",
35 "hyperledger",
36 "solutions"
37 ],
38 "author": "accordproject.org",
39 "license": "Apache-2.0",
40 "devDependencies": {
41 "babel-preset-env": "1.7.0",
42 "babel-preset-latest": "6.24.1",
43 "chai": "4.2.0",
44 "chai-as-promised": "7.1.1",
45 "chai-things": "0.2.0",
46 "commander": "2.20.0",
47 "eslint": "6.0.1",
48 "fs-extra": "8.1.0",
49 "jsdoc": "3.6.3",
50 "klaw": "3.0.0",
51 "license-check-and-add": "2.3.6",
52 "mocha": "6.1.4",
53 "mockery": "2.1.0",
54 "moxios": "0.4.0",
55 "node-plantuml": "0.8.1",
56 "npm-paths": "2.0.0",
57 "nyc": "14.1.1",
58 "pegjs": "0.10.0",
59 "sinon": "7.3.2",
60 "sinon-chai": "3.3.0",
61 "tmp-promise": "2.0.2",
62 "webpack": "4.35.2",
63 "webpack-cli": "3.3.5",
64 "yargs": "13.2.4"
65 },
66 "dependencies": {
67 "acorn": "5.1.2",
68 "axios": "0.19.0",
69 "debug": "4.1.1",
70 "doctrine": "3.0.0",
71 "lorem-ipsum": "1.0.6",
72 "mkdirp": "0.5.1",
73 "moment-mini": "2.22.1",
74 "semver": "6.2.0",
75 "urijs": "1.19.1",
76 "uuid": "3.3.2"
77 },
78 "license-check-and-add-config": {
79 "folder": "./lib",
80 "license": "HEADER",
81 "exact_paths_method": "EXCLUDE",
82 "exact_paths": [
83 "api.txt",
84 "composer-logs",
85 "coverage",
86 "index.d.ts",
87 "./system",
88 "./introspect/parser.js",
89 "LICENSE",
90 "node_modules",
91 ".nyc-output",
92 "out",
93 ".tern-project"
94 ],
95 "file_type_method": "EXCLUDE",
96 "file_types": [
97 ".yml",
98 ".yaml",
99 ".zip",
100 ".tgz"
101 ],
102 "insert_license": false,
103 "license_formats": {
104 "js|njk|pegjs|cto|acl|qry": {
105 "prepend": "/*",
106 "append": " */",
107 "eachLine": {
108 "prepend": " * "
109 }
110 },
111 "npmrc|editorconfig|txt": {
112 "eachLine": {
113 "prepend": "# "
114 }
115 },
116 "md": {
117 "file": "HEADER.md"
118 }
119 }
120 },
121 "nyc": {
122 "exclude": [
123 "coverage/**",
124 "index.js",
125 "webpack.config.js",
126 "lib/codegen/codegen.js",
127 "lib/codegen/parsejs.js",
128 "lib/codegen/javascriptparser.js",
129 "lib/introspect/parser.js",
130 "out/**",
131 "scripts/**",
132 "systest/**",
133 "test/**",
134 "umd/**"
135 ],
136 "reporter": [
137 "text-summary",
138 "html",
139 "lcov"
140 ],
141 "all": true,
142 "check-coverage": true,
143 "statements": 100,
144 "branches": 99,
145 "functions": 100,
146 "lines": 100
147 }
148}
\No newline at end of file