-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 899 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 899 Bytes
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
{
"name": "opennfts",
"version": "0.12.5",
"description": "OpenNFTs library of smarcontract components, enabling the creation of various NFT Collection templates.",
"directories": {
"lib": "lib"
},
"devDependencies": {
"solhint": "^3.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kredeum/OpenNFTs.git"
},
"keywords": [],
"author": "zapaz.eth",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kredeum/OpenNFTs/issues"
},
"homepage": "https://github.com/Kredeum/OpenNFTs#readme",
"scripts": {
"format": "forge fmt",
"forge-update": "git submodule update --recursive && forge update ",
"all": "npm run clean && npm run format && npm run check && npm run build && npm run test",
"clean": "forge clean",
"check": "solhint contracts/**/*.sol",
"build": "forge build",
"test": "forge test"
}
}