wallet-core/packages/taler-wallet-core/package.json

79 lines
2.0 KiB
JSON
Raw Normal View History

{
"name": "@gnu-taler/taler-wallet-core",
2021-11-26 16:55:06 +01:00
"version": "0.9.0-dev.1",
"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": {
"prepare": "tsc && rollup -c",
"compile": "tsc && rollup -c",
2020-08-12 09:11:00 +02:00
"pretty": "prettier --write src",
"test": "tsc && ava",
"coverage": "tsc && c8 --src src --all ava",
"coverage:html": "tsc && c8 -r html --src src --all ava",
"clean": "rimraf dist lib tsconfig.tsbuildinfo"
},
"files": [
"AUTHORS",
"README",
"COPYING",
"bin/",
2021-01-22 14:54:40 +01:00
"dist/",
"src/",
"lib/"
],
"main": "./dist/taler-wallet-core.js",
"browser": {
"./dist/taler-wallet-core.js": "./dist/taler-wallet-core.browser.js",
"./lib/index.node.js": "./lib/index.browser.js"
},
"module": "./lib/index.node.js",
2021-06-14 16:08:58 +02:00
"type": "module",
"types": "./lib/index.node.d.ts",
"devDependencies": {
"@ava/typescript": "^3.0.1",
2021-02-04 18:20:23 +01:00
"@gnu-taler/pogen": "workspace:*",
2022-02-10 20:13:07 +01:00
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"ava": "^4.0.1",
"c8": "^7.11.0",
2022-02-10 20:13:07 +01:00
"eslint": "^8.8.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jed": "^1.1.1",
"po2json": "^0.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
2022-02-10 20:13:07 +01:00
"rollup": "^2.67.2",
2020-11-17 12:28:51 +01:00
"rollup-plugin-sourcemaps": "^0.6.3",
"source-map-resolve": "^0.6.0",
2022-02-10 20:13:07 +01:00
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"dependencies": {
2021-02-04 18:20:23 +01:00
"@gnu-taler/idb-bridge": "workspace:*",
2021-03-17 17:56:37 +01:00
"@gnu-taler/taler-util": "workspace:*",
2022-02-10 20:13:07 +01:00
"@types/node": "^17.0.17",
"axios": "^0.25.0",
"big-integer": "^1.6.51",
2022-02-10 20:13:07 +01:00
"fflate": "^0.7.3",
"source-map-support": "^0.5.21",
"tslib": "^2.3.1"
},
"ava": {
"files": [
2021-06-14 18:19:18 +02:00
"lib/**/*test.*"
2021-06-14 16:08:58 +02:00
]
}
}