mirror of
https://github.com/paritytech/banana_split.git
synced 2026-09-12 19:51:03 +05:00
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"name": "banana_split",
|
|
"license": "GPL-3.0",
|
|
"description": "Shamir's Secret Sharing for people with friends",
|
|
"contributors": [
|
|
"Kirill Pimenov <kirill@parity.io>"
|
|
],
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"deploy": "gh-pages -b gh-pages -d dist -a",
|
|
"lint": "vue-cli-service lint",
|
|
"test:unit": "vue-cli-service test:unit"
|
|
},
|
|
"dependencies": {
|
|
"base64-js": "^1.3.0",
|
|
"scryptsy": "^2.0.0",
|
|
"secrets.js-grempe": "^1.1.0",
|
|
"tweetnacl": "^1.0.0",
|
|
"vue": "^2.5.17",
|
|
"vue-qrcode-reader": "^1.3.1",
|
|
"vue-qriously": "^1.1.1",
|
|
"vue-router": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/cli-plugin-eslint": "^3.1.5",
|
|
"@vue/cli-plugin-unit-jest": "^3.1.1",
|
|
"@vue/cli-service": "^3.1.4",
|
|
"@vue/test-utils": "^1.0.0-beta.20",
|
|
"babel-eslint": "^10.0.1",
|
|
"eslint": "^5.8.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-security": "^1.4.0",
|
|
"eslint-plugin-vue": "^6.2.2",
|
|
"fast-text-encoding": "^1.0.0",
|
|
"gh-pages": "^2.0.1",
|
|
"html-webpack-inline-source-plugin": "1.0.0-beta.2",
|
|
"html-webpack-plugin": "4.0.0-beta.4",
|
|
"jest-junit": "^6.0.1",
|
|
"vue-template-compiler": "^2.5.17"
|
|
},
|
|
"postcss": {
|
|
"plugins": {
|
|
"autoprefixer": {}
|
|
}
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not ie <= 8"
|
|
],
|
|
"jest-junit": {
|
|
"outputDirectory": ".test-results/jest",
|
|
"oputputName": "results.xml"
|
|
}
|
|
}
|