-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 1.71 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
79
80
81
82
83
84
85
{
"name": "@0xcert/ethereum-erc721",
"version": "2.4.0",
"description": "Non-fungible token standard implementation for the Ethereum blockchain.",
"scripts": {
"compile": "specron compile",
"sandbox": "specron sandbox",
"prepare": "specron compile",
"test": "specron compile && specron test",
"solhint": "solhint src/**/*.sol"
},
"specron": {
"compiler": {
"build": "./build",
"match": [
"./src/**/*.sol"
]
},
"flattener": {
"build": "./build",
"match": [
"./src/**/*.sol"
],
"severities": [
"error",
"warning"
]
},
"test": {
"match": [
"./src/**/*.test.*"
]
},
"require": [
"ts-node/register"
]
},
"author": "0xcert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/0xcert/ethereum-erc721.git"
},
"bugs": {
"url": "https://github.com/0xcert/etheethereum-erc721reum/issues"
},
"homepage": "https://github.com/0xcert/ethereum-erc721#readme",
"keywords": [
"ethereum",
"blockchain",
"eth",
"contract",
"contracts",
"smart",
"smart-contract",
"smart-contracts",
"token",
"tokens",
"nft",
"nfts",
"non-fungible",
"non-fungibles",
"eip",
"erc",
"erc721",
"erc-721",
"deed",
"standard"
],
"devDependencies": {
"@specron/cli": "^0.17.3",
"@specron/flattener": "^0.17.3",
"@specron/spec": "^0.17.3",
"@types/node": "^14.14.31",
"javascript-biginteger": "^0.9.2",
"solc": "0.8.0",
"solhint": "3.3.2",
"ts-node": "9.1.1",
"typescript": "^4.1.5",
"web3": "1.3.1"
},
"volta": {
"node": "10.23.3"
}
}