-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
{
"name": "parse-eth-tokens",
"version": "0.3.1",
"description": "Tool used to parse the 'ethereum-lists/tokens' repository to a format that is used by MyCrypto",
"main": "./lib/index.js",
"repository": "https://github.com/Mrtenz/parse-eth-tokens",
"author": "Maarten Zuidhoorn <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"bin": {
"parse-eth-tokens": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"prepublishOnly": "yarn test",
"prepare": "yarn build",
"clean": "rimraf ./lib",
"test": "jest",
"build": "yarn clean && tsc",
"prettier": "prettier --write --config ./.prettierrc --list-different './**/*.ts'",
"lint": "yarn run lint:ts && yarn run lint:tslint",
"lint:ts": "tsc --noEmit",
"lint:tslint": "tslint --project ."
},
"dependencies": {
"@hapi/joi": "^16.1.4",
"commander": "^3.0.2",
"listr": "^0.14.3",
"mkdirp": "^0.5.1",
"request": "^2.88.0",
"simple-git": "^2.20.1",
"uuid-by-string": "^3.0.1"
},
"devDependencies": {
"@types/hapi__joi": "^15.0.4",
"@types/jest": "^24.0.18",
"@types/listr": "^0.14.2",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.7.8",
"codecov": "^3.6.1",
"husky": "^3.0.7",
"jest": "^24.9.0",
"lint-staged": "^9.4.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.6.3"
},
"lint-staged": {
"*.ts": [
"prettier --write --config ./.prettierrc --config-precedence file-override",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && yarn run test && lint-staged"
}
}
}