-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
41
42
43
44
{
"name": "@fairyfromalfeya/ever-solidity-utils",
"description": "Utility solidity contracts for everscale",
"version": "3.0.4",
"author": "Alexander Kunekov<fairyfromalfeya@gmail.com>",
"license": "MIT",
"files": [
"/build",
"/contracts",
"/examples"
],
"scripts": {
"prepare": "husky install",
"build": "locklift build --contracts examples",
"format": "prettier --write \"test/**/*.ts\"",
"lint": "eslint \"test/**/*.spec.ts\" --fix",
"test": "locklift test --disable-build -n local"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "16.2.1",
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@types/node": "17.0.25",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"bignumber.js": "9.1.1",
"chai": "4.3.6",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"locklift": "2.4.6",
"mocha": "10.1.0",
"prettier": "2.6.2",
"ts-node": "10.8.1",
"typescript": "4.7.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}