-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.87 KB
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
{
"name": "zabo-sdk-js",
"version": "1.3.2",
"description": "Zabo SDK for JS",
"main": "dist/index.js",
"types": "./src/index.d.ts",
"scripts": {
"getv": "echo $npm_package_version",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha -r jsdom-global/register --recursive test/ --exit --timeout 10000",
"test:ethereum": "TEST_TYPE=ethereum npm run test",
"prepublishOnly": "npm run build && npm run build:types",
"build": "PACKAGE_VERSION=$npm_package_version npx webpack --config webpack.config.js --progress --colors",
"build:local": "NODE_ENV=local npm run build",
"build:types": "tsc",
"examples": "npm run build && ln -sf ../dist/zabo.js examples/zabo.js && live-server --host=localhost --port=8080 examples/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zabo-api/zabo-sdk-js.git"
},
"keywords": [
"zabo",
"cryptocurrency",
"wallets",
"bitcoin",
"ethereum",
"metamask",
"ledger",
"coinbase",
"binance",
"bitfinex",
"kraken",
"api"
],
"author": "Zabo",
"license": "MIT",
"bugs": {
"url": "https://github.com/zabo-api/zabo-sdk-js/issues"
},
"homepage": "https://github.com/zabo-api/zabo-sdk-js#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"babel-loader": "^8.0.6",
"jsdom": "15.2.1",
"jsdom-global": "3.0.2",
"mocha": "^6.2.0",
"should": "^13.2.3",
"standard": "^14.3.1",
"typescript": "^4.2.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.3"
},
"dependencies": {
"axios": "^0.21.1",
"create-hmac": "^1.1.7"
},
"engines": {
"node": ">=12"
},
"browser": {
"net": false,
"fs": false,
"child_process": false
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/assets",
"/examples"
]
}
}