summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/package.json
blob: ecebc9aa2d723cddb34bfd6ea22d3b18de40cbaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
  "name": "taler-wallet-core",
  "version": "0.8.0-rc.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": {
    "compile": "tsc && rollup -c",
    "pretty": "prettier --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",
    "@microsoft/api-extractor": "^7.9.4",
    "@typescript-eslint/eslint-plugin": "^3.9.0",
    "@typescript-eslint/parser": "^3.9.0",
    "ava": "^3.11.1",
    "eslint": "^7.6.0",
    "eslint-config-airbnb-typescript": "^9.0.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jsx-a11y": "^6.3.1",
    "eslint-plugin-react": "^7.20.5",
    "eslint-plugin-react-hooks": "^4.0.8",
    "esm": "^3.2.25",
    "jed": "^1.1.1",
    "nyc": "^15.1.0",
    "po2json": "^0.4.5",
    "pogen": "workspace:*",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "rollup": "^2.23.1",
    "rollup-plugin-sourcemaps": "^0.6.2",
    "source-map-resolve": "^0.6.0",
    "typedoc": "^0.18.0",
    "typescript": "^3.9.7"
  },
  "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.1"
  },
  "ava": {
    "require": [
      "esm"
    ],
    "files": [
      "src/**/*-test.*"
    ],
    "typescript": {
      "extensions": [
        "js",
        "ts",
        "tsx"
      ],
      "rewritePaths": {
        "src/": "lib/"
      }
    }
  }
}