forked from Turing-Space/BTC-ETH-Cross-Chain-Atomic-Swap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.93 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@liquality/chainabstractionlayer",
"version": "0.1.0",
"keywords": [
"blockchain",
"bitcoin",
"ethereum",
"client",
"abstraction",
"rpc",
"wallet",
"ledger",
"metamask"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/liquality/chainabstractionlayer.git"
},
"bugs": {
"url": "https://github.com/liquality/chainabstractionlayer/issues"
},
"homepage": "https://github.com/liquality/chainabstractionlayer#readme",
"author": "Liquality <info@liquality.io>",
"module": "src/index.js",
"browser": {
"@ledgerhq/hw-transport-node-hid": "@ledgerhq/hw-transport-u2f"
},
"main": "dist/index.cjs.js",
"files": [
"dist/index.umd.js",
"src/**/*"
],
"scripts": {
"cover": "nyc --reporter=html --reporter=text npm test",
"lint": "standard \"**/*.js\" \"**/*.html\" \"**/*.md\"",
"test": "cross-env NODE_ENV=test mocha $npm_package_options_mocha",
"build:dev:node": "webpack --config ./webpack/webpack.node.config.js",
"build:dev:browser": "webpack --config ./webpack/webpack.browser.config.js",
"build:dev": "webpack --config ./webpack/webpack.config.js",
"watch": "WEBPACK_WATCH=true webpack --config ./webpack/webpack.config.js",
"build:node": "cross-env NODE_ENV=production BABEL_ENV=production npm run build:dev:node",
"build:browser": "cross-env NODE_ENV=production BABEL_ENV=production npm run build:dev:browser",
"build": "cross-env NODE_ENV=production BABEL_ENV=production npm run build:dev",
"copy:browser-examples-to-docs": "copy \"examples/browser/**/*\" docs/examples/browser",
"copy:browser-build-to-docs": "copy \"dist/index.umd.js\" docs/",
"build:docs": "esdoc",
"prepare:docs": "run-s build build:docs copy:*",
"push:docs": "gh-pages -d docs/ -m \"Auto-generated commit for documentation\"",
"publish:docs": "run-s prepare:docs push:docs"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.56",
"@ledgerhq/hw-app-btc": "^4.20.0",
"@ledgerhq/hw-app-eth": "^4.19.0",
"@ledgerhq/hw-transport-node-hid": "~4.21.0",
"@ledgerhq/hw-transport-u2f": "^4.20.0",
"ajv": "^6.5.2",
"axios": "^0.18.0",
"bech32": "^1.1.3",
"bip65": "^1.0.3",
"bitcoinjs-lib": "https://github.com/mattBlackDesign/bitcoinjs-lib",
"bs58": "^4.0.1",
"crypto-hashing": "^1.0.0",
"dsn-parser": "^1.0.1",
"json-bigint": "^0.3.0",
"lodash": "^4.0.0",
"standard-error": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-transform-runtime": "^7.0.0-beta.56",
"@babel/polyfill": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.54",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-lodash": "^3.3.4",
"browserify": "^16.2.2",
"chai-as-promised": "^7.1.1",
"copy": "^0.3.2",
"cross-env": "^5.2.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"gh-pages": "^1.2.0",
"lodash-webpack-plugin": "^0.11.5",
"mocha": "^5.2.0",
"nock": "^9.3.0",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"should": "^13.2.1",
"standard": "^11.0.1",
"webpack": "^4.16.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0"
},
"engines": {
"node": ">=8"
},
"nyc": {
"include": [
"src/"
],
"instrument": false,
"report-dir": "./coverage",
"sourceMap": false
},
"options": {
"mocha": "--require @babel/register --require @babel/polyfill --timeout 20000 --recursive --require should"
},
"pre-commit": [
"lint",
"build",
"test"
],
"standard": {
"plugins": [
"html",
"markdown"
],
"ignore": [
"dist/**",
"docs/**"
]
}
}