forked from naddison36/open-bank-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "open-bank-token",
"version": "0.0.1",
"description": "An Ethereum ERC20 token contract that is connected to a bank account via a bank API",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/naddison36/open-bank-token.git"
},
"bin": {
"bankToken": "./bankToken.js"
},
"scripts": {
"test": "jest"
},
"keywords": [
"Bank",
"Open Bank",
"Ethereum",
"token",
"ERC20",
"API"
],
"author": "Nick Addison",
"license": "MIT",
"homepage": "https://github.com/naddison36/open-bank-token#readme",
"dependencies": {
"bn.js": "^4.11.8",
"commander": "^2.11.0",
"config": "^1.26.2",
"config-logger": "^0.0.4",
"ethers": "^3.0.2",
"js-yaml": "^3.9.1",
"verror": "^1.10.0"
},
"devDependencies": {
"@types/commander": "^2.9.1",
"@types/jest": "^21.1.2",
"@types/node": "^8",
"jest": "^21.2.1",
"solc": "^0.4.20",
"ts-jest": "^21.1.1",
"typescript": "^2.7.2",
"zeppelin-solidity": "1.7.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node"
}
}