forked from petejkim/cipher-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
{
"name": "cipher-ethereum",
"version": "0.0.2",
"description": "An Ethereum library used by Cipher Browser, a mobile Ethereum client",
"keywords": [
"ethereum",
"etherium",
"ether",
"eth",
"cipherbrowser",
"cipher",
"cypher",
"crypto",
"cryptocurrency",
"eip55",
"erc20",
"wallet",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/petejkim/cipher-ethereum.git",
"author": "Peter Jihoon Kim",
"license": "ISC",
"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": {
"bignumber.js": "^5.0.0",
"bn.js": "^4.11.8",
"bs58": "^4.0.1",
"elliptic": "^6.4.0",
"keccak": "^1.4.0",
"rlp": "^2.0.0"
},
"devDependencies": {
"@types/bs58": "^3.0.30",
"@types/jest": "^22.0.1",
"@types/node": "^9.3.0",
"babel-cli": "^6.24.1",
"babel-preset-node8": "^1.1.2",
"jest": "^22.1.1",
"nodemon": "^1.11.0",
"ts-jest": "^22.0.1",
"tslint": "^5.5.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.4.1"
},
"engines": {
"node": ">= 8.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}