2020-08-03 09:30:48 +02:00
|
|
|
{
|
|
|
|
"name": "taler-wallet-core",
|
|
|
|
"version": "0.6.12",
|
|
|
|
"description": "",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=0.12.0"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://git.taler.net/wallet-core.git"
|
|
|
|
},
|
|
|
|
"author": "Florian Dold",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"scripts": {
|
|
|
|
"compile": "tsc && rollup -c",
|
|
|
|
"pretty": "prettier --config ../../.prettierrc --write src",
|
|
|
|
"test": "tsc && ava",
|
|
|
|
"coverage": "tsc && nyc ava",
|
|
|
|
"clean": "rimraf dist lib"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"AUTHORS",
|
|
|
|
"README",
|
|
|
|
"COPYING",
|
|
|
|
"bin/",
|
|
|
|
"dist/node",
|
|
|
|
"src/"
|
|
|
|
],
|
|
|
|
"main": "./dist/taler-wallet-core.js",
|
|
|
|
"module": "./lib/index.js",
|
|
|
|
"types": "./lib/index.d.ts",
|
|
|
|
"devDependencies": {
|
|
|
|
"@ava/typescript": "^1.1.1",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^3.6.1",
|
|
|
|
"@typescript-eslint/parser": "^3.6.1",
|
|
|
|
"ava": "^3.10.1",
|
2020-08-05 21:00:36 +02:00
|
|
|
"dts-bundle-generator": "^5.3.0",
|
2020-08-03 09:30:48 +02:00
|
|
|
"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",
|
2020-08-05 21:00:36 +02:00
|
|
|
"esm": "^3.2.25",
|
2020-08-03 09:30:48 +02:00
|
|
|
"jed": "^1.1.1",
|
|
|
|
"moment": "^2.27.0",
|
|
|
|
"nyc": "^15.1.0",
|
|
|
|
"po2json": "^0.4.5",
|
|
|
|
"pogen": "workspace:*",
|
|
|
|
"prettier": "^2.0.5",
|
2020-08-05 21:00:36 +02:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"rollup": "^2.23.0",
|
|
|
|
"rollup-plugin-sourcemaps": "^0.6.2",
|
2020-08-03 09:30:48 +02:00
|
|
|
"source-map-resolve": "^0.6.0",
|
|
|
|
"structured-clone": "^0.2.2",
|
|
|
|
"typedoc": "^0.17.8",
|
2020-08-05 21:00:36 +02:00
|
|
|
"typescript": "^3.9.7"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@types/node": "^14.0.27",
|
|
|
|
"axios": "^0.19.2",
|
|
|
|
"big-integer": "^1.6.48",
|
|
|
|
"idb-bridge": "workspace:*",
|
|
|
|
"source-map-support": "^0.5.19",
|
|
|
|
"tslib": "^2.0.0"
|
|
|
|
},
|
|
|
|
"ava": {
|
2020-08-05 21:00:36 +02:00
|
|
|
"require": [
|
|
|
|
"esm"
|
|
|
|
],
|
2020-08-03 09:30:48 +02:00
|
|
|
"files": [
|
|
|
|
"src/**/*-test.*"
|
|
|
|
],
|
|
|
|
"typescript": {
|
|
|
|
"extensions": [
|
|
|
|
"js",
|
|
|
|
"ts",
|
|
|
|
"tsx"
|
|
|
|
],
|
|
|
|
"rewritePaths": {
|
|
|
|
"src/": "lib/"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|