-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "@lisk-builders/lisk-buttons",
"version": "0.7.7",
"description": "lisk buttons allow you to open Lisk Nano wallet with pre-filled forms",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build --prerender --prod",
"dev": "stencil build --dev --watch --serve --es5",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "stencil test --spec",
"test.watch": "stencil test --spec --watch",
"test.e2e": "stencil test --e2e",
"test.ci": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"tslint": "./node_modules/tslint/bin/tslint -p ./"
},
"dependencies": {
"@alepop/check-for-uri-handler": "0.0.4",
"@stencil/core": "0.18.1",
"@stencil/sass": "0.1.1"
},
"devDependencies": {
"@stencil/utils": "latest",
"@types/jest": "^21.1.1",
"coveralls": "^3.0.0",
"jest": "^21.2.1",
"tslint": "5.10.0",
"tslint-ionic-rules": "0.0.16",
"typescript": "^3.4.5",
"workbox-build": "3.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lisk-builders/lisk-buttons.git"
},
"author": "Aleksey Popov",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lisk-builders/lisk-buttons/issues"
},
"homepage": "https://github.com/lisk-builders/lisk-buttons",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts?|tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
],
"collectCoverage": true,
"mapCoverage": true
}
}