forked from trezor-graveyard/trezor-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (45 loc) · 1.19 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
{
"name": "trezor-chrome-extension",
"version": "0.1.0",
"description": "Chrome extension for communication with Trezor",
"main": "index.js",
"keywords": [
"chrome",
"trezor",
"bitcoin"
],
"contributors": [
{
"name": "Mike Tsao",
"mail": "[email protected]"
},
{
"name": "William Wolf",
"mail": "[email protected]"
},
{
"name": "Karel Bílek",
"mail": "[email protected]"
}
],
"license": "GPLv3",
"homepage": "https://github.com/trezor/chrome-extension",
"dependencies": {
"protobufjs": "~3.8.2",
"promise": "~5.0.0",
"bitcoinjs-lib": "~1.5.6",
"bigi": "^1.4.0",
"ecurve": "^1.0.0",
"lodash": "~3.6.0"
},
"devDependencies": {
"browserify": "~3.32.0",
"watchify": "~3.1.0"
},
"scripts": {
"prepare": "sed 's/\\(google\\/protobuf\\)/\\.\\/\\1/' trezor-common/protob/config.proto > trezor-common/protob/config_i.proto && proto2js trezor-common/protob/config_i.proto -commonjs > config_proto_compiled.js",
"build": "browserify lib/index.js -d -o extension/index.js",
"zip": "zip -r extension extension",
"watch": "watchify lib/index.js -d -v -o extension/index.js"
}
}