-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.21 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "trezor-connect",
"version": "5.0.26",
"author": "TREZOR <[email protected]>",
"homepage": "https://github.com/trezor/connect",
"description": "High-level javascript interface for TREZOR hardware wallet.",
"license": "LGPL-3.0+",
"repository": {
"type": "git",
"url": "git://github.com/trezor/connect.git"
},
"bugs": {
"url": "https://github.com/trezor/connect/issues"
},
"keywords": [
"TREZOR",
"trezor-connect",
"javascript"
],
"main": "dist/trezor-connect.js",
"bin": {
"bump": "./node_modules/version-bump-prompt/bin/bump"
},
"scripts": {
"dev": "webpack-dev-server --config ./webpack/config.dev.babel.js --mode development",
"build": "rm -rf dist && webpack --config ./webpack/config.prod.babel.js --progress",
"build:npm": "rm -rf npm && babel-node ./tools/build.js && babel ./npm/lib --out-dir ./npm/lib",
"stats": "webpack --config ./webpack/config.prod.babel.js --json > dist/stats.json",
"test": "sh ./src/__tests__/run.sh",
"flow": "flow check src/js",
"eslint": "eslint src/js",
"eslint-fix": "eslint --fix src/js",
"bump": "bump --patch"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-collect-imports": "^1.1.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"bchaddrjs": "^0.2.1",
"bip44-constants": "^5.0.0",
"bitcoinjs-lib-zcash": "^3.4.1",
"bowser": "^1.9.3",
"copy-webpack-plugin": "4.5.2",
"css-loader": "^0.28.11",
"es6-promise": "^4.2.2",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^1.1.10",
"flow-bin": "0.74.0",
"fs-extra": "^6.0.1",
"hd-wallet": "7.14.3",
"html-webpack-plugin": "^3.2.0",
"jasmine-ajax": "^3.4.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.2",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.2",
"karma-jasmine-async": "^0.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"keccak": "^1.4.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"mini-css-extract-plugin": "^0.4.0",
"parse-uri": "^1.0.0",
"pre-build-webpack": "^0.1.0",
"sharedworker-loader": "^2.1.1",
"style-loader": "^0.21.0",
"trezor-link": "1.5.5",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "1.2.5",
"version-bump-prompt": "^4.1.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "3.1.5",
"window-or-global": "^1.0.1",
"worker-loader": "^2.0.0"
},
"dependencies": {
"events": "^1.1.1",
"whatwg-fetch": "^2.0.4"
},
"npmDependencies": {
"babel-runtime": "^6.26.0",
"babel-polyfill": "^6.26.0"
}
}