UNPKG

3.58 kBJSONView Raw
1{
2 "name": "@accordproject/concerto",
3 "version": "0.80.2-20190925200615",
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 "webpack": "4.35.2",
62 "webpack-cli": "3.3.5",
63 "yargs": "13.2.4"
64 },
65 "dependencies": {
66 "acorn": "5.1.2",
67 "axios": "0.19.0",
68 "debug": "4.1.1",
69 "doctrine": "3.0.0",
70 "lorem-ipsum": "1.0.6",
71 "mkdirp": "0.5.1",
72 "moment-mini": "2.22.1",
73 "semver": "6.2.0",
74 "urijs": "1.19.1",
75 "uuid": "3.3.2"
76 },
77 "license-check-and-add-config": {
78 "folder": "./lib",
79 "license": "HEADER",
80 "exact_paths_method": "EXCLUDE",
81 "exact_paths": [
82 "api.txt",
83 "composer-logs",
84 "coverage",
85 "index.d.ts",
86 "./system",
87 "./introspect/parser.js",
88 "LICENSE",
89 "node_modules",
90 ".nyc-output",
91 "out",
92 ".tern-project"
93 ],
94 "file_type_method": "EXCLUDE",
95 "file_types": [
96 ".yml",
97 ".yaml",
98 ".zip",
99 ".tgz"
100 ],
101 "insert_license": false,
102 "license_formats": {
103 "js|njk|pegjs|cto|acl|qry": {
104 "prepend": "/*",
105 "append": " */",
106 "eachLine": {
107 "prepend": " * "
108 }
109 },
110 "npmrc|editorconfig|txt": {
111 "eachLine": {
112 "prepend": "# "
113 }
114 },
115 "md": {
116 "file": "HEADER.md"
117 }
118 }
119 },
120 "nyc": {
121 "exclude": [
122 "coverage/**",
123 "index.js",
124 "webpack.config.js",
125 "lib/codegen/codegen.js",
126 "lib/codegen/parsejs.js",
127 "lib/codegen/javascriptparser.js",
128 "lib/introspect/parser.js",
129 "out/**",
130 "scripts/**",
131 "systest/**",
132 "test/**",
133 "umd/**"
134 ],
135 "reporter": [
136 "text-summary",
137 "html",
138 "lcov"
139 ],
140 "all": true,
141 "check-coverage": true,
142 "statements": 100,
143 "branches": 99,
144 "functions": 100,
145 "lines": 100
146 }
147}
\No newline at end of file