-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "@nibbstack/erc721-validator",
"version": "0.3.1",
"description": "ERC-721 token validator.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean; tsc",
"clean": "rm -Rf ./dist",
"lint": "tslint 'src/**/*.ts?(x)'",
"prepublishOnly": "npm run build",
"print-abis": "ts-node ./src/scripts/print-abis.ts",
"test": "./node_modules/.bin/mocha --timeout 60000 --require ts-node/register --inspect --recursive ./src/tests/**/*.ts"
},
"author": "nibbstack",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nibbstack/erc721-validator.git"
},
"bugs": {
"url": "https://github.com/nibbstack/erc721-validator/issues"
},
"homepage": "https://github.com/nibbstack/erc721-validator#readme",
"keywords": [
"erc721",
"nonfungible",
"token",
"ethereum",
"solidity"
],
"dependencies": {
"@types/node": "^16.9.4"
},
"peerDependencies": {
"web3": "^1.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"solc": "0.8.7",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.4.3",
"web3": "^1.5.2"
}
}