forked from blockchain-certificates/blockcerts-verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 4.77 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
131
132
133
134
135
136
137
138
139
{
"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",
"dependencies": {
"@babel/runtime": "^7.6.0",
"@blockcerts/cert-verifier-js": "^6.5.1",
"@blockcerts/cert-verifier-js-v1-legacy": "^3.0.0",
"@polymer/lit-element": "0.5.1",
"@polymer/polymer": "3.4.1",
"@webcomponents/webcomponentsjs": "2.6.0",
"autolinker": "^3.14.1",
"cssfilter": "0.0.10",
"html-canvas": "^0.0.4",
"jspdf": "^2.5.1",
"lit-html": "0.10.2",
"proxy-polyfill": "^0.3.0",
"qrcode-svg": "^1.1.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.0.0",
"xss": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.2.0",
"@open-wc/testing": "^3.1.7",
"@open-wc/testing-karma": "^4.0.3",
"@polymer/iron-demo-helpers": "^3.0.0-pre.19",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^27.0.0",
"@types/qrcode-svg": "^1.1.1",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"axe-core": "^4.0.1",
"babel-jest": "^29.4.3",
"codecov": "^3.1.0",
"concurrently": "^7.3.0",
"deepmerge": "^4.2.2",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.16.3",
"husky": "^7.0.1",
"jest": "^25.5.4",
"jest-canvas-mock": "^2.4.0",
"jest-fetch-mock": "^3.0.0",
"karma-firefox-launcher": "^2.0.0",
"polymer-cli": "^1.8.1",
"pwa-helpers": "^0.8.2",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript": "^1.0.1",
"sass-lint": "^1.12.1",
"semantic-release": "^18.0.0",
"semistandard": "^14.1.0",
"sinon": "^11.1.0",
"snazzy": "^9.0.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2",
"watch": "^1.0.2",
"wc-sass-render": "blockchain-certificates/wc-sass-render",
"wct-browser-legacy": "^1.0.2",
"web-component-tester": "^6.9.0"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"build:sanitizer": "rollup -c rollup-sanitizer.config.js",
"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:components:retrieve": "node test/wct-script/retrieveTestFiles",
"test:components:retrieve:watch": "npm run test:components:retrieve -- --watch",
"test:components:persist": "concurrently 'npm run test:components:retrieve:watch' 'polymer test -p'",
"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.js -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:js && npm run lint:ts && npm run lint:styles",
"lint:fix": "semistandard --fix",
"lint:js": "semistandard \"**/*.js\" | snazzy",
"lint:ts": "eslint . --ext .ts",
"lint:styles": "sass-lint --verbose",
"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"
}
}