-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
{
"name": "@mycrypto/assets",
"version": "1.0.0",
"description": "Asset mapping for usage with CoinCap, CoinGecko, CryptoCompare and CryptoCurrency Icons",
"main": "src/index.ts",
"author": "MyCryptoHQ",
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "ts-node --files src",
"test": "jest",
"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 .",
"validate": "ts-node scripts/validate-json.ts",
"token-uuid": "ts-node scripts/token-uuid.ts"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"cryptocurrency-icons": "0.13.0",
"execa": "^3.3.0",
"listr": "^0.14.3",
"node-fetch": "^2.6.1",
"parse-eth-tokens": "^0.3.0",
"string-similarity": "^3.0.0"
},
"devDependencies": {
"@types/hapi__joi": "^16.0.3",
"@types/jest": "^24.0.23",
"@types/keccak": "^3.0.1",
"@types/listr": "^0.14.2",
"@types/node": "^12.12.7",
"@types/node-fetch": "^2.5.3",
"@types/string-similarity": "^3.0.0",
"codecov": "^3.7.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"keccak": "^3.0.1",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.7.2",
"uuid-by-string": "https://github.com/MyCryptoHQ/uuid-by-string.git"
},
"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"
}
}
}