forked from nucypher/nucypher-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "@nucypher/nucypher-contracts",
"version": "0.23.0",
"license": "AGPL-3.0-or-later",
"description": "Threshold Access Control (TACo) Smart Contracts",
"author": "NuCypher",
"files": [
"/contracts/**/*.sol",
"/deployment/artifacts/*.json",
"!/contracts/test/**/*",
"dist"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "vitest run",
"solhint": "solhint 'contracts/**/*.sol'",
"solhint:fix": "solhint 'contracts/**/*.sol' --fix",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"prettier:fix": "prettier --write contracts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"ganache": "^7.9.1",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^5.0.1",
"solhint-plugin-prettier": "^0.0.5",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}