-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "@skalenetwork/filestorage",
"version": "1.1.0",
"description": "SKALE Filestorage contracts",
"keywords": [
"SKALE",
"blockchain",
"ethereum"
],
"homepage": "https://github.com/skalenetwork/filestorage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/skalenetwork/filestorage.git"
},
"license": "AGPL-3.0",
"author": "SKALE Labs and contributors",
"main": "artifacts.json",
"scripts": {
"build": "rm -r ./build; npx truffle build",
"coverage": "npx truffle run coverage --file=\"test/unit/*\"",
"compile": "npx truffle compile",
"compile-hardhat": "npx hardhat clean && npx hardhat compile",
"test": "npx truffle test test/unit/* --network skaled",
"lint": "npx ethlint -d contracts",
"lint-fix": "npm run lint -- --fix",
"predeployed-test": "npx truffle test test/predeployed/* --network skaled",
"slither": "slither . --filter-path strings --filter-path Migrations",
"version": "node -e \"console.log(require('./package.json').version);\""
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.3.0",
"dotenv": "^8.2.0",
"hardhat": "^2.6.4",
"randomstring": "^1.1.5",
"solidity-coverage": "^0.7.17",
"truffle": "5.1.30",
"@truffle/hdwallet-provider": "^1.5.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"web3": "^1.2.1"
},
"publishConfig": {
"access": "public"
}
}