-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 873 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": "tokengate",
"version": "1.2.4",
"description": "js module for token gating on ethereum",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"test": "echo \"Error: no test specified\" && exit 1",
"test:types": "./node_modules/.bin/tsc --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcusmolchany/tokengate.git"
},
"keywords": [
"tokengate",
"token gate",
"ethereum",
"ethers"
],
"author": "marcusmolchany",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.14",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"ethers": "^5.5.4"
}
}