forked from ourzora/nft-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.92 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
74
75
76
77
78
{
"name": "@zoralabs/nft-metadata",
"version": "1.2.4",
"description": "Generic nft metadata parsers",
"author": "Zora",
"license": "MIT",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@pinata/ipfs-gateway-tools": "1.1.6",
"@zoralabs/core": "^1.0.7",
"axios": "^0.22.0",
"axios-retry": "^3.2.3",
"cross-fetch": "^3.1.4",
"node-abort-controller": "^2.0.0"
},
"devDependencies": {
"@ethersproject/address": "5.3.0",
"@ethersproject/bignumber": "^5.4.0",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/contracts": "5.3.0",
"@ethersproject/providers": "5.3.1",
"@types/jest": "^26.0.23",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"fetch-mock-jest": "^1.5.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-serial-runner": "^1.1.0",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@ethersproject/address": "5.3.0",
"@ethersproject/bignumber": "^5.4.0",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/contracts": "5.3.0",
"@ethersproject/providers": "5.3.1"
},
"scripts": {
"test": "NODE_OPTIONS=--max-http-header-size=16384 jest --runInBand",
"clean": "rm -rf ./dist",
"prepack": "yarn clean && tsc",
"build": "yarn run prepack",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,md}": "prettier src --write"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "tests",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}