@accordproject/concerto-cto 3.25.7 → 3.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/concerto-cto.js +1 -1
- package/dist/concerto-cto.js.LICENSE.txt +1 -1
- package/package.json +39 -39
package/package.json
CHANGED
|
@@ -1,42 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accordproject/concerto-cto",
|
|
3
|
-
"version": "3.25.7",
|
|
4
3
|
"description": "Parser for Concerto CTO files",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"node": ">=18",
|
|
8
|
-
"npm": ">=10"
|
|
9
|
-
},
|
|
10
|
-
"main": "index.js",
|
|
4
|
+
"version": "3.26.0",
|
|
5
|
+
"author": "accordproject.org",
|
|
11
6
|
"browser": "dist/concerto-cto.js",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"pretest": "npm run lint && npm run parser && npm run doc",
|
|
17
|
-
"lint": "eslint .",
|
|
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
|
-
"build": "npm run parser && npm run build:types",
|
|
24
|
-
"build:types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
|
|
25
|
-
"postbuild": "npm run webpack",
|
|
26
|
-
"webpack": "webpack --config webpack.config.js --mode production"
|
|
27
|
-
},
|
|
28
|
-
"repository": {
|
|
29
|
-
"type": "git",
|
|
30
|
-
"url": "https://github.com/accordproject/concerto.git",
|
|
31
|
-
"directory": "packages/concerto-cto"
|
|
7
|
+
"browserslist": "> 0.25%, not dead",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@accordproject/concerto-metamodel": "3.12.6",
|
|
10
|
+
"@accordproject/concerto-util": "3.26.0"
|
|
32
11
|
},
|
|
33
|
-
"keywords": [
|
|
34
|
-
"blockchain",
|
|
35
|
-
"hyperledger",
|
|
36
|
-
"solutions"
|
|
37
|
-
],
|
|
38
|
-
"author": "accordproject.org",
|
|
39
|
-
"license": "Apache-2.0",
|
|
40
12
|
"devDependencies": {
|
|
41
13
|
"chai": "4.3.6",
|
|
42
14
|
"chai-as-promised": "7.1.1",
|
|
@@ -51,11 +23,18 @@
|
|
|
51
23
|
"sinon": "19.0.2",
|
|
52
24
|
"typescript": "5.7.2"
|
|
53
25
|
},
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=18",
|
|
28
|
+
"npm": ">=10"
|
|
57
29
|
},
|
|
58
|
-
"
|
|
30
|
+
"homepage": "https://github.com/accordproject/concerto",
|
|
31
|
+
"keywords": [
|
|
32
|
+
"blockchain",
|
|
33
|
+
"hyperledger",
|
|
34
|
+
"solutions"
|
|
35
|
+
],
|
|
36
|
+
"license": "Apache-2.0",
|
|
37
|
+
"main": "index.js",
|
|
59
38
|
"nyc": {
|
|
60
39
|
"produce-source-map": "true",
|
|
61
40
|
"sourceMap": "inline",
|
|
@@ -77,5 +56,26 @@
|
|
|
77
56
|
"branches": 41,
|
|
78
57
|
"functions": 70,
|
|
79
58
|
"lines": 55
|
|
80
|
-
}
|
|
59
|
+
},
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "https://github.com/accordproject/concerto.git",
|
|
63
|
+
"directory": "packages/concerto-cto"
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "npm run parser && npm run build:types",
|
|
67
|
+
"build:types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
|
|
68
|
+
"doc": "jsdoc --pedantic --recurse -c jsdoc.json",
|
|
69
|
+
"lint": "eslint .",
|
|
70
|
+
"mocha": "mocha --recursive -t 10000",
|
|
71
|
+
"nyc": "nyc mocha --recursive -t 10000",
|
|
72
|
+
"parser": "peggy -o lib/parser.js lib/parser.pegjs",
|
|
73
|
+
"postbuild": "npm run webpack",
|
|
74
|
+
"prepublishOnly": "npm run webpack",
|
|
75
|
+
"pretest": "npm run lint && npm run parser && npm run doc",
|
|
76
|
+
"test": "nyc mocha --recursive -t 10000",
|
|
77
|
+
"test:watch": "nyc mocha --watch --recursive -t 10000",
|
|
78
|
+
"webpack": "webpack --config webpack.config.js --mode production"
|
|
79
|
+
},
|
|
80
|
+
"typings": "types/index.d.ts"
|
|
81
81
|
}
|