-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·47 lines (47 loc) · 1.26 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
{
"name": "@radarrelay/wallet-manager",
"version": "0.3.3",
"description": "A library that simplifies Ethereum wallet creation.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "tsc -p tsconfig.test.json && mocha --require mock-local-storage dist-test/**/*.test.js",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint"
},
"keywords": [
"ethereum",
"wallet"
],
"author": "Radar Relay <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/lodash": "^4.14.109",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.46",
"@types/eth-lightwallet": "3.0.0",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"tslint": "^5.8.0",
"tslint-config-0xproject": "0.0.2",
"typescript": "^2.5.3",
"mock-local-storage": "^1.0.5"
},
"dependencies": {
"eth-lightwallet": "^3.0.1",
"lodash": "^4.17.10"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RadarRelay/wallet-manager.git"
},
"bugs": {
"url": "https://github.com/RadarRelay/wallet-manager/issues"
},
"homepage": "https://github.com/RadarRelay/wallet-manager#readme"
}