-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
125 lines (125 loc) · 4.07 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
{
"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": ">=18.0.0"
},
"dependencies": {
"@blockcerts/cert-verifier-js": "^6.22.0",
"@blockcerts/cert-verifier-js-v1-legacy": "^4.0.1",
"@polymer/lit-element": "0.5.1",
"@polymer/polymer": "3.5.1",
"@webcomponents/webcomponentsjs": "2.8.0",
"autolinker": "^4.0.0",
"cssfilter": "0.0.10",
"html-canvas": "^0.0.4",
"jspdf": "^2.5.1",
"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": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@open-wc/testing": "^4.0.0",
"@open-wc/testing-karma": "^4.0.9",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^29.5.8",
"@types/qrcode-svg": "^1.1.1",
"@types/sinon": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^6.10.0",
"codecov": "^3.8.3",
"concurrently": "^8.2.0",
"deepmerge": "^4.2.2",
"eslint": "^8.53.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.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.16.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"karma-firefox-launcher": "^2.0.0",
"rimraf": "^5.0.5",
"rollup": "^4.22.4",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-visualizer": "^5.9.2",
"semantic-release": "^22.0.12",
"sinon": "^17.0.1",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.3",
"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:components:retrieve && polymer test; npm run test:karma",
"test:karma": "tsc -p tsconfig-test.json && karma start; npm run test:karma:cleanup",
"test:karma:cleanup": "git clean -dfq",
"test:application": "jest --runInBand --silent",
"test:application:watch": "jest --watch",
"test:coverage": "jest --maxWorkers=4 --silent --noStackTrace --coverage",
"test:coverage:report": "codecov",
"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": "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"
],
"env": "jest"
}
}