-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
71 lines (71 loc) · 1.6 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
{
"name": "trezor-chrome-extension",
"version": "1.2.4",
"description": "Chrome extension for communication with Trezor",
"main": "index.js",
"keywords": [
"chrome",
"trezor",
"bitcoin"
],
"contributors": [
{
"name": "Mike Tsao",
"mail": "[email protected]"
},
{
"name": "Liz Fong-Jones",
"mail": "[email protected]"
},
{
"name": "William Wolf",
"mail": "[email protected]"
},
{
"name": "Karel Bílek",
"mail": "[email protected]"
}
],
"license": "GPL-3.0",
"homepage": "https://github.com/trezor/trezor-chrome-extension",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-chrome-extension.git"
},
"dependencies": {
"trezor-link-browser-extension": "0.2.85"
},
"devDependencies": {
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-chrome-49": "^1.0.0",
"babelify": "^7.2.0",
"browserify": "^13.1.0",
"envify": "^3.4.0",
"fast-async": "^6.0.31"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"chrome-49"
],
"plugins": [
"transform-flow-strip-types",
"transform-class-properties",
"transform-object-rest-spread",
"add-module-exports",
"fast-async"
]
}
],
[
"envify"
]
]
}
}