-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.38 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.38 KB
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
{
"name": "@accordproject/cicero-core",
"version": "0.25.0",
"description": "Cicero Core - Implementation of Accord Protocol Template Specification",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"types"
],
"main": "dist/cicero-core.js",
"typings": "types/index.d.ts",
"scripts": {
"webpack": "webpack --config webpack.config.js --mode production",
"prepublishOnly": "npm run build:types && npm run webpack",
"pretest": "npm run lint",
"lint": "eslint .",
"postlint": "npm run licchk",
"licchk": "license-check-and-add check -f ./license.config.json",
"test:mocha": "mocha --timeout 40000 --recursive",
"test:watch": "npm run test:mocha -- --watch",
"test:windows": "npm run test:mocha",
"test": "npm run test:mocha",
"test:cov": "nyc npm run test",
"jsdoc": "jsdoc -c jsdoc.json package.json",
"build:types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/accordproject/template-archive.git",
"directory": "packages/cicero-core"
},
"keywords": [
"accord",
"cicero",
"smart",
"contract"
],
"author": "accordproject.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/accordproject/template-archive/issues"
},
"homepage": "https://github.com/accordproject/template-archive",
"devDependencies": {
"@babel/preset-typescript": "^7.27.0",
"archiver": "5.3.1",
"assert": "2.0.0",
"babel-loader": "^9.1.3",
"browserify-zlib": "0.2.0",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"chai-things": "0.2.0",
"constants-browserify": "1.0.0",
"copy-webpack-plugin": "^13.0.0",
"crypto-browserify": "3.12.0",
"eslint": "^8.43.0",
"https-browserify": "1.0.0",
"jsdoc": "^4.0.2",
"license-check-and-add": "4.0.5",
"mocha": "^10.2.0",
"mock-require": "^3.0.3",
"node-polyfill-webpack-plugin": "4.0.0",
"nyc": "15.1.0",
"raw-loader": "^4.0.2",
"source-map-loader": "^5.0.0",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"ts-loader": "^9.5.2",
"typescript": "5.6.3",
"webpack": "5.104.1",
"webpack-cli": "^5.1.4",
"node-forge": "^1.4.0"
},
"dependencies": {
"@accordproject/concerto-core": "3.25.7",
"@accordproject/concerto-util": "3.25.7",
"@accordproject/markdown-cicero": "0.17.2",
"@accordproject/markdown-common": "0.17.2",
"@accordproject/markdown-template": "0.17.2",
"@accordproject/markdown-transform": "0.17.2",
"@types/node": "^22.13.13",
"axios": "1.13.6",
"debug": "4.3.4",
"ietf-language-tag-regex": "0.0.5",
"json-stable-stringify": "1.0.2",
"jszip": "3.10.1",
"node-cache": "5.1.2",
"semver": "7.5.3",
"slash": "3.0.0",
"xregexp": "5.1.1"
},
"nyc": {
"produce-source-map": "true",
"sourceMap": "inline",
"reporter": [
"lcov",
"text",
"text-summary",
"html",
"json"
],
"include": [
"src/**/*.js"
],
"exclude": [
"lib/tdl.js",
"lib/compiled_template.js"
],
"all": true,
"check-coverage": true,
"statements": 91,
"branches": 81,
"functions": 89,
"lines": 91
},
"gitHead": "514fd02f46752e018aedb77e1716a212ef4a59e5"
}