@accordproject/concerto-vocabulary 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/package.json +39 -39
package/package.json
CHANGED
|
@@ -1,40 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accordproject/concerto-vocabulary",
|
|
3
|
-
"version": "3.25.7",
|
|
4
3
|
"description": "Associate human-readable text to model declarations",
|
|
5
|
-
"
|
|
6
|
-
"engines": {
|
|
7
|
-
"node": ">=18",
|
|
8
|
-
"npm": ">=10"
|
|
9
|
-
},
|
|
10
|
-
"main": "index.js",
|
|
11
|
-
"typings": "types/index.d.ts",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"pretest": "npm run lint && npm run doc",
|
|
14
|
-
"lint": "eslint .",
|
|
15
|
-
"doc": "jsdoc --pedantic --recurse -c jsdoc.json",
|
|
16
|
-
"test": "nyc mocha --recursive -t 10000",
|
|
17
|
-
"test:updateSnapshots": "UPDATE_SNAPSHOT=1 nyc mocha --recursive -t 10000",
|
|
18
|
-
"test:watch": "nyc mocha --watch --recursive -t 10000",
|
|
19
|
-
"mocha": "mocha --recursive -t 10000",
|
|
20
|
-
"nyc": "nyc mocha --recursive -t 10000",
|
|
21
|
-
"build": "npm run build:types",
|
|
22
|
-
"build:types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types"
|
|
23
|
-
},
|
|
24
|
-
"repository": {
|
|
25
|
-
"type": "git",
|
|
26
|
-
"url": "https://github.com/accordproject/concerto.git",
|
|
27
|
-
"directory": "packages/concerto-cto"
|
|
28
|
-
},
|
|
29
|
-
"keywords": [
|
|
30
|
-
"blockchain",
|
|
31
|
-
"hyperledger",
|
|
32
|
-
"solutions"
|
|
33
|
-
],
|
|
4
|
+
"version": "3.26.0",
|
|
34
5
|
"author": "accordproject.org",
|
|
35
|
-
"
|
|
6
|
+
"browserslist": "> 0.25%, not dead",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@accordproject/concerto-metamodel": "3.12.6",
|
|
9
|
+
"yaml": "2.8.0"
|
|
10
|
+
},
|
|
36
11
|
"devDependencies": {
|
|
37
|
-
"@accordproject/concerto-core": "3.
|
|
12
|
+
"@accordproject/concerto-core": "3.26.0",
|
|
13
|
+
"@types/webgl-ext": "0.0.37",
|
|
38
14
|
"chai": "4.3.6",
|
|
39
15
|
"chai-as-promised": "7.1.1",
|
|
40
16
|
"chai-things": "0.2.0",
|
|
@@ -43,14 +19,20 @@
|
|
|
43
19
|
"mocha": "10.8.2",
|
|
44
20
|
"mocha-chai-jest-snapshot": "1.1.6",
|
|
45
21
|
"nyc": "17.1.0",
|
|
46
|
-
"typescript": "5.7.2"
|
|
47
|
-
"@types/webgl-ext": "0.0.37"
|
|
22
|
+
"typescript": "5.7.2"
|
|
48
23
|
},
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18",
|
|
26
|
+
"npm": ">=10"
|
|
52
27
|
},
|
|
53
|
-
"
|
|
28
|
+
"homepage": "https://github.com/accordproject/concerto",
|
|
29
|
+
"keywords": [
|
|
30
|
+
"blockchain",
|
|
31
|
+
"hyperledger",
|
|
32
|
+
"solutions"
|
|
33
|
+
],
|
|
34
|
+
"license": "Apache-2.0",
|
|
35
|
+
"main": "index.js",
|
|
54
36
|
"nyc": {
|
|
55
37
|
"produce-source-map": "true",
|
|
56
38
|
"sourceMap": "inline",
|
|
@@ -70,5 +52,23 @@
|
|
|
70
52
|
"branches": 41,
|
|
71
53
|
"functions": 70,
|
|
72
54
|
"lines": 55
|
|
73
|
-
}
|
|
55
|
+
},
|
|
56
|
+
"repository": {
|
|
57
|
+
"type": "git",
|
|
58
|
+
"url": "https://github.com/accordproject/concerto.git",
|
|
59
|
+
"directory": "packages/concerto-cto"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "npm run build:types",
|
|
63
|
+
"build:types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
|
|
64
|
+
"doc": "jsdoc --pedantic --recurse -c jsdoc.json",
|
|
65
|
+
"lint": "eslint .",
|
|
66
|
+
"mocha": "mocha --recursive -t 10000",
|
|
67
|
+
"nyc": "nyc mocha --recursive -t 10000",
|
|
68
|
+
"pretest": "npm run lint && npm run doc",
|
|
69
|
+
"test": "nyc mocha --recursive -t 10000",
|
|
70
|
+
"test:updateSnapshots": "UPDATE_SNAPSHOT=1 nyc mocha --recursive -t 10000",
|
|
71
|
+
"test:watch": "nyc mocha --watch --recursive -t 10000"
|
|
72
|
+
},
|
|
73
|
+
"typings": "types/index.d.ts"
|
|
74
74
|
}
|