forked from ProjectOpenSea/marketplace-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 865 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
38
{
"name": "marketplace-benchmarks",
"license": "MIT",
"version": "1.0.0",
"description": "Marketplace Benchmarking for various NFT marketplaces",
"files": [
"src/**/*.sol"
],
"devDependencies": {
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13"
},
"scripts": {
"lint:check": "prettier --check **.sol && prettier --check **.js",
"lint:fix": "prettier --write **.sol && prettier --write **.js",
"test:generate": "node script/runTest.js"
},
"prettier": {
"overrides": [
{
"files": [
"*.sol",
"*.js"
],
"options": {
"tabWidth": 4,
"printWidth": 80,
"bracketSpacing": true
}
}
]
},
"dependencies": {
"child_process": "^1.0.2",
"color-interpolate": "^1.0.5",
"color-parse": "^1.4.2"
}
}