-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
151 lines (151 loc) · 4.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "@accordproject/concerto-codegen",
"version": "3.30.2",
"description": "Code Generation for the Concerto Modeling Language",
"homepage": "https://github.com/accordproject/concerto",
"engines": {
"node": ">=18",
"npm": ">=6"
},
"main": "index.js",
"browser": "umd/concerto-codegen.js",
"typings": "types/index.d.ts",
"scripts": {
"coverage": "node ./scripts/coverage.js \"packages/concerto-*\" && nyc report -t coverage --cwd . --report-dir coverage --reporter=lcov && cat ./coverage/lcov.info",
"prepublishOnly": "npm run webpack",
"pretest": "npm run lint",
"lint": "eslint .",
"postlint": "npm run licchk",
"licchk": "license-check-and-add",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.json",
"test": "nyc mocha --recursive -t 10000",
"test:updateSnapshots": "nyc mocha --updateSnapshot --recursive -t 10000",
"test:watch": "nyc mocha --watch --recursive -t 10000",
"mocha": "mocha --recursive -t 10000",
"nyc": "nyc mocha --recursive -t 10000",
"build": "npm run build:types",
"postbuild": "npm run webpack",
"webpack": "webpack --config webpack.config.js --mode production",
"build:types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"mocha": {
"require": "mocha-expect-snapshot"
},
"repository": {
"type": "git",
"url": "https://github.com/accordproject/concerto-codegen.git",
"directory": "packages/concerto-codegen"
},
"keywords": [
"concerto",
"codegen",
"modeling"
],
"author": "accordproject.org",
"license": "Apache-2.0",
"devDependencies": {
"@accordproject/concerto-cto": "3.19.8",
"@babel/preset-env": "7.16.11",
"@types/webgl-ext": "0.0.37",
"ajv": "8.17.1",
"babel-loader": "8.2.3",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-things": "0.2.0",
"eslint": "8.2.0",
"expect": "29.1.0",
"jsdoc": "^4.0.3",
"license-check-and-add": "2.3.6",
"mocha": "10.0.0",
"mocha-expect-snapshot": "6.2.0",
"moxios": "0.4.0",
"node-polyfill-webpack-plugin": "3.0.0",
"nunjucks": "3.2.4",
"nyc": "15.1.0",
"sinon": "12.0.0",
"sinon-chai": "3.7.0",
"tmp-promise": "3.0.2",
"ts-json-schema-generator": "2.3.0",
"typescript": "5.7.2",
"webpack": "5.94.0",
"webpack-cli": "4.9.1"
},
"dependencies": {
"@accordproject/concerto-core": "3.19.8",
"@accordproject/concerto-util": "3.19.8",
"@accordproject/concerto-vocabulary": "3.19.8",
"@openapi-contrib/openapi-schema-to-json-schema": "5.1.0",
"ajv-formats": "3.0.1",
"camelcase": "6.3.0",
"debug": "4.3.4",
"get-value": "3.0.1",
"json-schema-migrate": "2.0.0",
"pluralize": "8.0.0"
},
"license-check-and-add-config": {
"folder": "./lib",
"license": "HEADER",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"api.txt",
"composer-logs",
"coverage",
"index.d.ts",
"./system",
"./introspect/parser.js",
"LICENSE",
"node_modules",
".nyc-output",
"out",
".tern-project"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".yaml",
".zip",
".tgz"
],
"insert_license": false,
"license_formats": {
"js|njk|pegjs|cto|acl|qry": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"npmrc|editorconfig|txt": {
"eachLine": {
"prepend": "# "
}
},
"md": {
"file": "./HEADER.md"
}
}
},
"nyc": {
"produce-source-map": "true",
"sourceMap": "inline",
"reporter": [
"lcov",
"text-summary",
"html",
"json"
],
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/codegen/codegen.js"
],
"all": true,
"check-coverage": true,
"statements": 99,
"branches": 97,
"functions": 99,
"lines": 99
}
}