wallet-core/package.json

83 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "taler-wallet",
2020-03-26 12:53:21 +01:00
"version": "0.6.12",
"description": "",
2020-03-23 13:03:00 +01:00
"engines": {
"node": ">=0.12.0"
},
2019-08-14 18:49:56 +02:00
"main": "dist/node/index.js",
"repository": {
"type": "git",
2020-03-23 10:58:11 +01:00
"url": "git://git.taler.net/wallet-core.git"
},
2019-08-14 18:25:30 +02:00
"author": "Florian Dold",
"license": "GPL-3.0",
2019-08-19 13:09:11 +02:00
"bin": {
"taler-wallet-cli": "./bin/taler-wallet-cli"
},
"scripts": {
2020-03-30 12:22:04 +02:00
"build": "make tsc",
2020-04-06 10:03:15 +02:00
"pretty": "prettier --config .prettierrc --write src",
"test": "ava",
"coverage": "nyc ava"
},
"files": [
"AUTHORS",
"README",
"COPYING",
"bin/",
"dist/node",
2020-04-06 10:24:09 +02:00
"src/"
],
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-replace": "^2.3.1",
"@types/chrome": "^0.0.103",
"@types/react": "^16.9.6",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
2020-04-06 09:52:31 +02:00
"ava": "^3.6.0",
"eslint": "^6.8.0",
2020-04-07 10:07:32 +02:00
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
2020-04-07 10:07:32 +02:00
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jed": "^1.1.1",
"moment": "^2.18.1",
"nyc": "^15.0.1",
"po2json": "^0.4.5",
2019-05-07 23:46:50 +02:00
"pogen": "^0.0.5",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.3.3",
2019-12-02 18:12:59 +01:00
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
2017-06-04 01:14:05 +02:00
"structured-clone": "^0.2.2",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
2019-07-21 23:50:10 +02:00
},
"dependencies": {
2020-04-06 09:52:31 +02:00
"axios": "^0.19.2",
"big-integer": "^1.6.48",
2019-11-30 00:36:20 +01:00
"idb-bridge": "^0.0.15",
2019-08-20 15:59:05 +02:00
"qrcode-generator": "^1.4.3",
"source-map-support": "^0.5.12",
"tslib": "^1.11.1"
2020-04-06 10:03:15 +02:00
},
"ava": {
"files": [
"src/**/*-test.{js,ts}"
],
"typescript": {
"rewritePaths": {
"src/": "dist/node/"
}
}
}
}