-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
73 lines (73 loc) · 1.67 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
71
72
73
{
"name": "cipher-ethereum",
"version": "0.1.0",
"description": "An Ethereum library used by Cipher Browser, a mobile Ethereum client",
"keywords": [
"cipher",
"cipherbrowser",
"coinbase",
"crypto",
"cryptocurrency",
"cypher",
"eip55",
"erc20",
"eth",
"ether",
"ethereum",
"etherium",
"toshi",
"typescript",
"wallet"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/petejkim/cipher-ethereum.git",
"author": "Peter Jihoon Kim",
"license": "MIT",
"scripts": {
"test": "jest",
"dist": "rm -rf dist && tsc && babel dist -d dist",
"tsc": "tsc --noEmit --pretty",
"lint": "tslint -p . 'src/**/*.ts{,x}'",
"watch": "nodemon -e ts,tsx,js,json --watch src/ --exec 'yarn tsc && yarn lint'"
},
"dependencies": {
"bn.js": "^5.1.3",
"bs58": "^4.0.1",
"elliptic": "^6.5.3",
"keccak": "^3.0.1",
"rlp": "^2.2.6"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.2",
"@types/node": "^14.14.22",
"babel-cli": "^6.24.1",
"babel-preset-latest-node": "^1.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}