forked from blockchain-certificates/blockcerts-verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·128 lines (128 loc) · 4.44 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
{
"name": "@bloxberg-org/blockcerts-verifier",
"version": "1.2.2",
"description": "A standalone universal viewer and verifier for bloxberg credentials",
"repository": {
"type": "git",
"url": "https://github.com/bloxberg-org/blockcerts-verifier.git"
},
"main": "dist/main.js",
"dependencies": {
"@babel/runtime": "^7.6.0",
"@bloxberg-org/cert-verifier-js": "^1.0.4",
"@bundled-es-modules/pdfjs-dist": "^2.2.228-alpha1",
"@polymer/lit-element": "0.5.1",
"@polymer/polymer": "3.4.1",
"@webcomponents/webcomponentsjs": "2.4.4",
"autolinker": "^3.14.1",
"axios": "^0.19.2",
"cssfilter": "0.0.10",
"pdfjs-dist": "^2.5.207",
"proxy-polyfill": "^0.3.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": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@open-wc/testing": "^2.5.16",
"@open-wc/testing-karma": "^4.0.3",
"@polymer/iron-demo-helpers": "^3.0.0-pre.19",
"@types/jest": "^26.0.4",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"axe-core": "^4.0.1",
"babel-jest": "^26.0.0",
"codecov": "^3.1.0",
"concurrently": "^5.0.2",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^17.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.16.3",
"husky": "^4.0.0",
"jest": "^25.5.1",
"jest-fetch-mock": "^3.0.0",
"karma-firefox-launcher": "^1.3.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": "^17.0.2",
"semistandard": "^14.1.0",
"sinon": "^9.0.0",
"snazzy": "^8.0.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"watch": "^1.0.2",
"wc-sass-render": "1.0.0",
"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"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"semistandard": {
"globals": [
"performance",
"fetch",
"FileReader",
"atob",
"CustomEvent",
"Image",
"domainParseStub"
],
"ignore": [
"sanitizer/sanitizer.js",
"test/wct-script/getTestFiles.js",
"test/assertions/*",
"*-css.js"
],
"env": "jest"
}
}