forked from nibbstack/erc721
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.63 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
{
"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.6",
"@specron/flattener": "0.17.6",
"@specron/spec": "0.17.6",
"@types/node": "16.4.11",
"solc": "0.8.6",
"solhint": "3.3.6",
"ts-node": "10.1.0",
"typescript": "4.3.5",
"web3": "1.5.0"
}
}