-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
111 lines (111 loc) · 4.42 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
102
103
104
105
106
107
108
109
110
111
{
"name": "greenaddress-webfiles",
"version": "1.0.0",
"description": "Shared web files used by the Cordova and Electron apps.",
"main": "static/js/index.js",
"scripts": {
"testbuild": "yarn run test && yarn run build",
"test": "semistandard && tape $(find static/ -name '*test.js' | grep -v node_modules) | tap-spec",
"build": "gulp build",
"watch": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greenaddress/GreenAddressWebFiles.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/greenaddress/GreenAddressWebFiles/issues"
},
"homepage": "https://github.com/greenaddress/GreenAddressWebFiles#readme",
"devDependencies": {
"browserify": "^16.2.2",
"bufferutil": "4.0.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-rename": "^1.4.0",
"gulp-run": "^1.6.12",
"merge-stream": "^1.0.0",
"proxyquire": "^2.1.0",
"semistandard": "^7.0.5",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"utf-8-validate": "5.0.1",
"vinyl-source-stream": "^2.0.0",
"zuul": "^3.12.0"
},
"dependencies": {
"angular": "~1.5.0",
"angular-animate": "~1.5.0",
"angular-route": "~1.5.0",
"angular-scroll": "^1.0.0",
"angular-touch": "~1.5.0",
"angular-ui-bootstrap": "^1.3.1",
"any-storage": "^0.2.1",
"ap": "^0.2.0",
"bitcoinjs-lib": "~3.1.1",
"buffer-equals": "^1.0.3",
"bytebuffer": "^5.0.1",
"global": "^4.3.0",
"has-chrome-storage": "^0.1.0",
"promise": "^8.0.1",
"promise-polyfill": "^8.1.0",
"promise.prototype.finally": "^3.1.0",
"protobufjs": "^5.0.0",
"q": "^1.4.1",
"raf": "^3.2.0",
"wallet": "file:./static/js/greenwallet/wallet",
"wallyjs": "file:./libwally-core/src/wrap_js",
"xtend": "^4.0.1"
},
"semistandard": {
"ignore": [
"bitcoinjs-browserify/",
"static/external/",
"static/js/lib/",
"static/js/greenwallet/app.js",
"static/js/greenwallet/apps/signup.js",
"static/js/greenwallet/apps/wallet.js",
"static/js/greenwallet/controllers.js",
"static/js/greenwallet/decode_raw_tx.js",
"static/js/greenwallet/directives.js",
"static/js/greenwallet/hdwallet.js",
"static/js/greenwallet/info/controllers.js",
"static/js/greenwallet/init.js",
"static/js/greenwallet/mnemonics/services.js",
"static/js/greenwallet/receive/controllers.js",
"static/js/greenwallet/send/controllers.js",
"static/js/greenwallet/services.js",
"static/js/greenwallet/services/index.js",
"static/js/greenwallet/settings/directives.js",
"static/js/greenwallet/signup/bip38.js",
"static/js/greenwallet/signup/bip38_worker.js",
"static/js/greenwallet/signup/nfc.js",
"static/js/greenwallet/signuplogin/controllers.js",
"static/js/greenwallet/transactions/controllers.js",
"static/js/greenwallet/settings/controllers.js",
"static/js/greenwallet/services/wallets.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/thirdparty/q/q.min.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/thirdparty/class/inheritance.min.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/thirdparty/async/async.min.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/Convert.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/CardTerminalFactory.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/ChromeapiPlugupCard.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/require.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/BTChip.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/GlobalConstants.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/ChromeapiPlugupCardTerminal.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/chromeDevice.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/ChromeapiPlugupCardTerminalFactory.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/ByteString.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/Card.js",
"static/js/greenwallet/wallet/hw-apis/ledger-js/api/CardTerminal.js",
"static/js/greenwallet/wallet/hw-apis/trezor-hid/index.js",
"static/js/greenwallet/wallet/hw-apis/trezor-hid/trezor.js",
"static/js/greenwallet/wallet/hw-apis/trezor-hid/messages_proto.js",
"static/js/greenwallet/wallet/ga-impl/segwit.js",
"libwally-core/"
]
}
}