-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "@arkecosystem/qrcode",
"version": "0.0.7",
"description": "A web component to generate QR codes for ARK payments.",
"homepage": "https://github.com/ArkEcosystem/qrcode",
"bugs": {
"url": "https://github.com/ArkEcosystem/qrcode"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArkEcosystem/qrcode.git"
},
"license": "MIT",
"author": "Lúcio Rubens <lucio@ark.io>",
"files": [
"dist/",
"loader/"
],
"main": "dist/index.js",
"unpkg": "dist/test/test.js",
"module": "dist/index.mjs",
"types": "dist/types/components.d.ts",
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.coverage": "stencil test --spec --e2e --coverage",
"test.e2e": "stencil test --e2e",
"test.e2e.coverage": "stencil test --e2e --coverage",
"test.e2e.watch": "stencil test --e2e --watchAll",
"test.unit": "stencil test --spec",
"test.unit.coverage": "stencil test --spec --coverage",
"test.unit.watch": "stencil test --spec --watchAll",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"dependencies": {
"@stencil/core": "^1.1.6",
"@stencil/utils": "^0.0.5",
"@types/jest": "^26.0.0",
"codecov": "^3.5.0",
"qrious": "^4.0.2",
"workbox-build": "5.1.3"
},
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"devDependencies": {
"@types/puppeteer": "3.0.1",
"jest": "26.1.0",
"jest-cli": "26.1.0",
"puppeteer": "5.2.1"
}
}