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
|
{
"name": "taler-wallet",
"version": "0.0.0",
"description": "",
"main": "wxwallet.js",
"scripts": {
"test": "mocha --delay",
"test-cover": "istanbul cover -x libwrapper.js _mocha -- --delay"
},
"repository": {
"type": "git",
"url": "git://git.taler.net/wallet.git"
},
"author": "",
"license": "GPL-3.0",
"nyc": {
"exclude": [
"emscripten"
],
"include": [
"build/src/**/*.js"
]
},
"devDependencies": {
"@types/moment": "^2.13.0",
"@types/react": "^16.0.2",
"@types/react-dom": "^16.0.0",
"ava": "^0.21.0",
"awesome-typescript-loader": "^3.2.2",
"axios": "^0.16.2",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-debug": "^3.1.0",
"gulp-gzip": "^1.2.0",
"gulp-json-transform": "^0.4.2",
"gulp-rename": "^1.2.2",
"gulp-stream": "0.0.2",
"gulp-sym": "^1.0.2",
"gulp-tar": "^2.0.0",
"gulp-typescript": "^3.0.2",
"gulp-zip": "^4.0.0",
"html-webpack-plugin": "^2.28.0",
"jed": "^1.1.1",
"map-stream": "^0.0.7",
"moment": "^2.18.1",
"nyc": "^11.1.0",
"po2json": "git+https://github.com/mikeedwards/po2json",
"pogen": "file:tooling/pogen/",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"structured-clone": "^0.2.2",
"through2": "^2.0.1",
"tslint": "^5.3.2",
"typedoc": "^0.8.0",
"typescript": "^2.4.0",
"uglify-js": "^3.0.27",
"urijs": "^1.18.10",
"vinyl": "^2.0.0",
"vinyl-fs": "^2.4.3",
"webpack": "^3.5.4",
"webpack-merge": "^4.1.0"
}
}
|