-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "@springrole/springwallet",
"version": "0.2.2",
"description": "Wallet for SpringRole users",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --ignore-path .gitignore --config .prettierrc --write \"**/*.{js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpringRole/SpringWallet.git"
},
"keywords": [
"SpringRole",
"Spring",
"Token",
"Secure",
"Wallet",
"Attestation",
"Protocol",
"VanityURL"
],
"author": "SpringRole <https://github.com/SpringRole>",
"contributors": [
{
"name": "Suraj Rawat",
"email": "[email protected]",
"url": "https://github.com/nervehammer"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SpringRole/SpringWallet/issues"
},
"homepage": "https://github.com/SpringRole/SpringWallet#readme",
"dependencies": {
"bip39": "^3.0.3",
"ethereumjs-wallet": "^1.0.1",
"web3-provider-engine": "^16.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-preset-minify": "^0.5.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --ignore-pattern '!.eslintrc.js --fix"
],
"*.{json,css}": [
"prettier --write"
]
}
}