-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "@0xsequence/contracts-library",
"version": "1.0.0",
"description": "Solidity Contract Library for 0xSequence",
"repository": "https://github.com/0xsequence/contract-library.git",
"bugs": {
"url": "https://github.com/0xsequence/contract-library/issues"
},
"homepage": "https://github.com/0xsequence/contract-library#README.md",
"source": "src/index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"scripts": {
"build": "forge build --force",
"deploy": "ts-node scripts/deploy.ts",
"test": "forge test",
"coverage": "forge coverage --report lcov",
"snapshot:compare": "forge snapshot --diff .gas-snapshot",
"snapshot:write": "forge snapshot",
"lint:init": "husky install",
"lint:sol": "solhint \"./src/**/*.sol\" \"./tests/**/*.sol\"",
"format:sol": "forge fmt"
},
"files": [
"src",
"dist"
],
"lint-staged": {
"**/*.sol": "yarn lint:sol && yarn format:sol"
},
"devDependencies": {
"@types/node": "^20.1.0",
"dotenv": "^16.1.4",
"ethers": "^5.7.2",
"husky": "^8.0.3",
"keccak256": "^1.0.6",
"lint-staged": "^13.2.2",
"merkletreejs": "^0.2.32",
"solhint": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}