wallet-core/package.json

95 lines
2.3 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"
},
"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-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^5.0.2",
"@types/chrome": "^0.0.103",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/node": "^14.0.23",
"@types/react": "^16.9.6",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"ava": "^3.10.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jed": "^1.1.1",
"moment": "^2.27.0",
2020-06-03 13:14:56 +02:00
"nyc": "^15.1.0",
"po2json": "^0.4.5",
2019-05-07 23:46:50 +02:00
"pogen": "^0.0.5",
2020-06-03 13:14:56 +02:00
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.21.0",
2020-06-03 13:14:56 +02:00
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
2020-04-07 12:55:59 +02:00
"source-map-resolve": "^0.6.0",
2017-06-04 01:14:05 +02:00
"structured-clone": "^0.2.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
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",
2020-06-03 13:14:56 +02:00
"source-map-support": "^0.5.19",
"tslib": "^2.0.0"
2020-04-06 10:03:15 +02:00
},
"ava": {
"files": [
"src/**/*-test.*"
2020-04-06 10:03:15 +02:00
],
"typescript": {
"extensions": [
"js",
"ts",
"tsx"
],
2020-04-06 10:03:15 +02:00
"rewritePaths": {
"src/": "dist/node/"
}
}
}
}