-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.58 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.58 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
{
"name": "@blockcerts/blockcerts-verifier",
"version": "0.0.0-dev",
"description": "A standalone universal viewer and verifier for blockcerts credentials",
"repository": {
"type": "git",
"url": "https://github.com/blockchain-certificates/blockcerts-verifier.git"
},
"main": "dist/main.js",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@blockcerts/cert-verifier-js": "^6.35.1",
"@blockcerts/cert-verifier-js-v1-legacy": "^4.0.2",
"@polymer/lit-element": "0.5.1",
"@polymer/polymer": "3.5.2",
"@webcomponents/webcomponentsjs": "2.8.0",
"autolinker": "^4.0.0",
"cssfilter": "0.0.11",
"html-canvas": "^0.0.4",
"jspdf": "^4.2.0",
"lit-html": "0.10.2",
"proxy-polyfill": "^0.3.0",
"pwa-helpers": "^0.8.4",
"qrcode-svg": "^1.1.0",
"redux": "^5.0.0",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.0.0",
"xss": "^1.0.3"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/mocha": "^10.0.10",
"@types/qrcode-svg": "^1.1.1",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.23.0",
"@vitest/coverage-istanbul": "^4.0.6",
"@web/test-runner": "^0.20.1",
"concurrently": "^9.1.2",
"eslint": "^10.0.3",
"express": "^5.1.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-visualizer": "^7.0.0",
"sinon": "^21.0.0",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^15.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"vitest": "^4.0.6",
"wc-sass-render": "blockchain-certificates/wc-sass-render"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.mjs",
"build:sanitizer": "rollup -c rollup-sanitizer.config.mjs",
"test": "npm run test:application",
"test:build": "npm run test:e2e",
"test:e2e": "tsc -p tsconfig-test.json && web-test-runner && npm run test:e2e:cleanup",
"test:e2e:cleanup": "git clean -dfq",
"test:application": "vitest run",
"test:application:watch": "vitest",
"test:coverage": "vitest run --coverage --silent",
"test:coverage:report": "codecov -f coverage/lcov.info",
"start": "concurrently 'rollup -c rollup.dev.config.mjs -w' 'npm run styles:compile:watch' 'npm run start:mock-server'",
"start:mock-server": "node test/mock-server",
"styles:compile": "sass-render ./src/components/**/*.scss",
"styles:compile:watch": "sass-render ./src/components/**/*.scss -w",
"lint": "npm run lint:ts && npm run lint:styles",
"lint:ts": "eslint . --ext .ts",
"lint:styles": "stylelint '**/*.scss'",
"semantic-release": "npx semantic-release",
"prepare": "husky install"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"publishConfig": {
"access": "public"
},
"semistandard": {
"globals": [
"performance",
"fetch",
"FileReader",
"atob",
"CustomEvent",
"Image",
"domainParseStub"
],
"ignore": [
"sanitizer/sanitizer.js",
"test/wct-script/getTestFiles.js",
"test/assertions/*",
"*-css.js"
]
}
}