-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
97 lines (97 loc) · 2.27 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
{
"devDependencies": {
"colors": "1.4.0",
"coveralls": "3.1.0",
"dayjs": "1.10.4",
"eslint": "7.24.0",
"istanbul-combine": "0.3.0",
"istanbul-merge": "1.1.1",
"jsdoc": "^3.6.7",
"lerna": "^4.0.0",
"license-check-and-add": "2.3.6",
"nyc": "15.1.0",
"semver": "7.3.5"
},
"engines": {
"node": ">=12",
"npm": ">=5"
},
"name": "concerto",
"description": "You must install [Lerna](https://lernajs.io) to build this multi-package repository.",
"version": "1.1.0",
"private": true,
"scripts": {
"coverage": "istanbul-combine -d coverage -r lcov packages/concerto-cli/coverage/*.json packages/concerto-core/coverage/*.json packages/concerto-tools/coverage/*.json && cat ./coverage/lcov.info",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"pretest": "npm run licchk",
"test": "lerna run test",
"repoclean": "lerna clean",
"licchk": "license-check-and-add"
},
"repository": {
"type": "git",
"url": "https://github.com/accordproject/concerto"
},
"license-check-and-add-config": {
"folder": ".",
"license": "HEADER",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
".git",
".github",
".gitattributes",
".tern-project",
"node_modules",
"packages",
"softhsm",
"build.cfg",
"README.md",
"CONTRIBUTING.md",
"DEVELOPERS.md",
"NOTICES.md",
"CHARTER.md",
"ISSUE_TEMPLATE.md",
"MAINTAINERS.md",
"contrib-notes",
"log",
"LICENSE",
"HEADER",
"docs/",
"umd/",
"coverage",
".DS_Store",
"packages/concerto-core/api.txt",
"coverage",
"index.d.ts",
"packages/concerto-core/introspect/parser.js",
"node_modules",
".nyc-output"
],
"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"
}
}
}
}