-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 5.05 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
{
"name": "@blockcerts/cert-verifier-js-v1-legacy",
"version": "0.0.0-dev",
"description": "Javascript library for verifying Blockcerts v1 (legacy)",
"repository": {
"type": "git",
"url": "https://github.com/blockchain-certificates/cert-verifier-js-v1-legacy.git"
},
"main": "dist/verifier/index.js",
"module": "dist/verifier-es/index.js",
"node": "dist/verifier-node/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dts:bundle": "dts-bundle-generator -o ./dist/index.d.ts --project tsconfig.json --no-banner src/index.ts",
"test": "jest --setupFilesAfterEnv=./test/setup.ts",
"test:build": "npm run test:manual:node:server& npm run test:build:esm && npm run test:build:cjs && npm run test:build:node && npm run test:build:iife && kill -9 $(lsof -t -i:4000)",
"test:build:node": "jest --testRegex \"/*(verifier-node.test.build.js)\" --silent",
"test:build:cjs": "jest --testRegex \"/*(verifier.test.build.js)\" --silent",
"test:build:esm": "jest --testRegex \"/*(verifier-es.test.build.js)\" --silent",
"test:build:iife": "karma start --single-run",
"test:manual:browser": "rollup -c test/manual-testing/browser/rollup.config.mjs",
"test:manual:node:server": "node test/manual-testing/node/server.js",
"test:manual:node:server:watch": "nodemon test/manual-testing/node/server.js",
"test:manual:node:verify": "node test/manual-testing/node/request.mjs",
"test:watch": "jest --watch",
"test:coverage": "jest --maxWorkers=4 --silent --noStackTrace --coverage",
"test:coverage:report": "codecov",
"build": "rimraf dist && npm run build:esm && npm run build:iife && npm run build:node && npm run dts:bundle && npm run test:build",
"build:esm": "rollup -c",
"build:iife": "rollup -c rollup.iife.config.mjs",
"build:node": "rollup -c rollup.node.config.mjs",
"transpile:mocks:iife": "rollup -c test/build/scripts/rollup.mocks.config.mjs",
"clean:lib:ts": "rimraf lib/\"**\"/*.ts",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "semistandard --verbose",
"lint:ts": "eslint . --ext .ts",
"semantic-release": "HUSKY=0 semantic-release",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"author": "Kim Duffy",
"maintainers": [
"Matthieu Collé",
"Julien Fraichot"
],
"license": "MIT",
"semistandard": {
"globals": [
"XMLHttpRequest"
],
"env": "jest",
"ignore": [
"dist/"
]
},
"dependencies": {
"@blockcerts/explorer-lookup": "^1.5.1",
"@blockcerts/schemas": "^3.4.1",
"base58-universal": "github:lemoustachiste/base58-universal#fix/hoisting-error-alphabet",
"core-js": "^3.23.5",
"jsonld": "^8.3.1",
"jsonld-checker": "npm:@blockcerts/jsonld-checker@^0.1.9",
"jsonld-signatures": "^11.2.1",
"lodash.clonedeep": "^4.5.0",
"readable-stream": "npm:vite-compatible-readable-stream@^3.6.1",
"serialize-error": "github:blockchain-certificates/serialize-error",
"defa": "github:blockchain-certificates/sha.js#fix/jest-exports-esm",
"sha256": "^0.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@decentralized-identity/did-common-typescript": "^0.1.19",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/sinon": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"body-parser": "^1.19.0",
"brfs": "^2.0.2",
"codecov": "^3.0.4",
"crypto": "^1.0.1",
"dts-bundle-generator": "^8.1.2",
"eslint": "^8.53.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"husky": "^8.0.1",
"jasmine-core": "^5.1.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.2",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"node-fetch": "^3.3.2",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "github:blockchain-certificates/rollup-plugin-node-globals",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-visualizer": "^5.9.2",
"semantic-release": "^22.0.7",
"semistandard": "^16.0.0",
"sinon": "^17.0.1",
"snazzy": "^9.0.0",
"ts-jest": "^29.1.1",
"tslib": "^2.4.0",
"typescript": "^5.2.2",
"xmlhttprequest": "^1.8.0"
}
}