-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "@manifoldxyz/ens-auth-ethers",
"version": "0.0.1",
"description": "",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"eslint": "eslint --ext .ts,.js ./src/**/*",
"lint": "eslint --ext .ts,.js ./src/**/*",
"lint-fix": "eslint --ext .ts ./src/**/* --fix",
"test": "jest --watch",
"test:ci": "jest --ci --forceExit --detectOpenHandles"
},
"files": [
"dist/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldxyz/ens-auth-ethers.git"
},
"author": "manifold.xyz",
"license": "ISC",
"bugs": {
"url": "https://github.com/manifoldxyz/ens-auth-ethers/issues"
},
"homepage": "https://github.com/manifoldxyz/ens-auth-ethers#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"types-bn": "^0.0.1",
"typescript": "^4.7.2"
},
"dependencies": {
"ethers": "^5.6.8"
}
}