-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.92 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
{
"name": "@yourdlt/wallet-components",
"description": "YourDLT Wallet Components: Components Library for Plugins Development.",
"homepage": "https://github.com/UsingBlockchain/yourdlt-wallet-components#readme",
"version": "0.3.2",
"author": {
"name": "Using Blockchain Ltd",
"email": "info@ubc.digital",
"url": "https://using-blockchain.org"
},
"repository": {
"type": "git",
"url": "https://github.com/UsingBlockchain/yourdlt-wallet-components.git"
},
"license": "LGPL-3.0-only",
"main": "dist/@yourdlt/wallet-components.umd.js",
"types": "dist/@yourdlt/src/components.d.ts",
"files": [
"dist/*",
"README.md",
"package.json"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build:lib && npm run build:ts",
"build:lib": "vue-cli-service build --target lib --name @yourdlt/wallet-components src/components.ts",
"build:ts": "tsc --emitDeclarationOnly",
"pretest": "npm run build",
"test": "vue-cli-service test:unit",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"eslint": "eslint src/ --ext .ts && eslint src/ --ext .vue",
"eslint:fix": "eslint src/ --ext .ts --fix && eslint src/ --ext .vue --fix",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src"
},
"dependencies": {
"@yourdlt/wallet-api-bridge": "latest",
"vue": "^2.6.10",
"vue-property-decorator": "^8.1.0",
"view-design": "^4.5.0",
"symbol-qr-library": "^0.14.0",
"vue-infinite-scroll": "^2.0.2"
},
"devDependencies": {
"@babel/compat-data": "^7.14.0",
"@babel/core": "^7.14.2",
"@types/jest": "^23.3.1",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-typescript": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "^1.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^25.2.6",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"cpy-cli": "^3.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^6.1.2",
"flush-promises": "^1.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.6",
"jest-transform-stub": "^2.0.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"semver": "^5.3.0",
"typescript": "^3.9.9",
"ts-jest": "^25.3.0",
"ts-mockito": "^2.6.1",
"vue-class-component": "^7.2.3",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.5.2"
}
}