-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.57 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
{
"name": "@yourdlt/wallet-api-bridge",
"description": "YourDLT Wallet API Bridge: Programmatical API for Plugins Development",
"homepage": "https://github.com/UsingBlockchain/yourdlt-wallet-api-bridge#readme",
"version": "0.2.4",
"author": {
"name": "Using Blockchain Ltd",
"email": "info@ubc.digital",
"url": "https://using-blockchain.org"
},
"repository": {
"type": "git",
"url": "https://github.com/UsingBlockchain/yourdlt-wallet-api-bridge.git"
},
"license": "LGPL-3.0-only",
"main": "dist/@yourdlt/wallet-api-bridge.umd.js",
"types": "dist/@yourdlt/src/main.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-api-bridge src/main.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:fix": "eslint src/ --ext .ts --fix",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src"
},
"dependencies": {
"vue": "^2.6.10",
"vue-router": "^3.5.1",
"js-sha3": "^0.8.0",
"vuex": "^3.6.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",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^6.1.2",
"jest": "^25.2.6",
"jest-transform-stub": "^2.0.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-jest": "^3.0.5",
"vue-template-compiler": "^2.5.2"
}
}