-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "zabo-connect-utils",
"version": "0.1.3",
"description": "A collection of utils for the Zabo connect components.",
"main": "./lib/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "NODE_ENV=production babel src --out-dir lib",
"test": "echo \"Error: no test specified\" && exit 1",
"standardize": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zabo-api/zabo-connect-utils.git"
},
"keywords": [
"library",
"utils",
"components"
],
"author": "Zabo",
"license": "ISC",
"bugs": {
"url": "https://github.com/zabo-api/zabo-connect-utils/issues"
},
"homepage": "https://github.com/zabo-api/zabo-connect-utils#readme",
"dependencies": {
"bip32": "^1.0.4",
"bip32-path": "^0.4.2",
"bitcoinjs-lib": "^5.1.8"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.8.3"
},
"eslintConfig": {
"extends": "react-app"
},
"standard": {
"ignore": [
"lib"
]
},
"files": [
"lib",
"README.md"
]
}