UNPKG

2.94 kBJSONView Raw
1{
2 "name": "@accordproject/concerto-tools",
3 "version": "0.82.2",
4 "description": "Tools for the Concerto Modeling Language",
5 "homepage": "https://github.com/accordproject/concerto",
6 "engines": {
7 "node": ">=8",
8 "npm": ">=5"
9 },
10 "main": "index.js",
11 "typings": "types/index.d.ts",
12 "scripts": {
13 "prepublishOnly": "webpack --config webpack.config.js --mode production",
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": "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 },
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/accordproject/concerto.git"
27 },
28 "keywords": [
29 "concerto",
30 "tools",
31 "modeling"
32 ],
33 "author": "accordproject.org",
34 "license": "Apache-2.0",
35 "devDependencies": {
36 "ajv": "6.5.4",
37 "babel-preset-latest": "6.24.1",
38 "chai": "4.2.0",
39 "chai-as-promised": "7.1.1",
40 "chai-things": "0.2.0",
41 "eslint": "6.0.1",
42 "jsdoc": "3.6.3",
43 "license-check-and-add": "2.3.6",
44 "mocha": "6.1.4",
45 "mockery": "2.1.0",
46 "moment-mini": "2.22.1",
47 "moxios": "0.4.0",
48 "nunjucks": "3.1.3",
49 "nyc": "14.1.1",
50 "pegjs": "0.10.0",
51 "sinon": "7.3.2",
52 "sinon-chai": "3.3.0",
53 "tmp-promise": "2.0.2",
54 "webpack": "4.35.2",
55 "webpack-cli": "3.3.5"
56 },
57 "dependencies": {
58 "@accordproject/concerto-core": "0.82.2",
59 "debug": "4.1.1",
60 "mkdirp": "0.5.1",
61 "yargs": "13.2.4"
62 },
63 "license-check-and-add-config": {
64 "folder": "./lib",
65 "license": "HEADER",
66 "exact_paths_method": "EXCLUDE",
67 "exact_paths": [
68 "api.txt",
69 "composer-logs",
70 "coverage",
71 "index.d.ts",
72 "./system",
73 "./introspect/parser.js",
74 "LICENSE",
75 "node_modules",
76 ".nyc-output",
77 "out",
78 ".tern-project"
79 ],
80 "file_type_method": "EXCLUDE",
81 "file_types": [
82 ".yml",
83 ".yaml",
84 ".zip",
85 ".tgz"
86 ],
87 "insert_license": false,
88 "license_formats": {
89 "js|njk|pegjs|cto|acl|qry": {
90 "prepend": "/*",
91 "append": " */",
92 "eachLine": {
93 "prepend": " * "
94 }
95 },
96 "npmrc|editorconfig|txt": {
97 "eachLine": {
98 "prepend": "# "
99 }
100 },
101 "md": {
102 "file": "./HEADER.md"
103 }
104 }
105 },
106 "nyc": {
107 "produce-source-map": "true",
108 "sourceMap": "inline",
109 "reporter": [
110 "lcov",
111 "text-summary",
112 "html",
113 "json"
114 ],
115 "include": [
116 "lib/**/*.js"
117 ],
118 "exclude": [
119 "lib/codegen/codegen.js"
120 ],
121 "all": true,
122 "check-coverage": true,
123 "statements": 100,
124 "branches": 100,
125 "functions": 100,
126 "lines": 100
127 }
128}
\No newline at end of file