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
102 lines (102 loc) · 2.82 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
{
"name": "chainabstractionlayer",
"private": "true",
"keywords": [
"blockchain",
"bitcoin",
"ethereum",
"client"
],
"main": "dist/index.cjs.js",
"browser": "dist/index.umd.js",
"files": [
"dist/index.cjs.js",
"dist/index.umd.js"
],
"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.node.config.js",
"build:dev:browser": "webpack --config webpack.browser.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:docs": "esdoc",
"build:dev": "run-p build:dev:*",
"build": "run-p build:browser build:node",
"publish:docs": "npm run build && npm run build:docs && gh-pages -d docs/ -m \"Auto-generated commit for documentation\""
},
"dependencies": {
"@ledgerhq/hw-app-btc": "^4.20.0",
"@ledgerhq/hw-app-eth": "^4.19.0",
"@ledgerhq/hw-transport-node-hid": "^4.19.1",
"@ledgerhq/hw-transport-u2f": "^4.20.0",
"ajv": "^6.5.2",
"axios": "^0.18.0",
"base-x": "^3.0.4",
"bcrypto": "^1.0.0",
"bech32": "^1.1.3",
"bs58": "^4.0.1",
"crypto-js": "^3.1.9-1",
"json-bigint": "^0.3.0",
"lodash": "^4.0.0",
"regenerator-runtime": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@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",
"cross-env": "^5.2.0",
"esdoc": "^1.1.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/**"
]
}
}