-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 950 Bytes
/
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
{
"name": "@serenae-fansubs/snapshot-override-report",
"version": "0.1.1",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"repository": "serenae-fansubs/snapshot-override-report",
"license": "MIT",
"scripts": {
"report": "node dist",
"prereport": "npm run build",
"build": "tsc -p .",
"postbuild": "copyfiles -u 1 src/**/*.md dist/ && copyfiles -u 1 src/**/*.json dist/",
"test": "jest test/index.spec.ts --runInBand --testTimeout=120000",
"pretest": "npm run build"
},
"dependencies": {
"@ethersproject/address": "^5.6.1",
"@ethersproject/units": "^5.6.1",
"@snapshot-labs/snapshot.js": "^0.4.12",
"@ensdomains/ensjs": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^13.9.5",
"copyfiles": "^2.4.1",
"jest": "^26.6.3",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=14"
}
}