-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.38 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": "@defi-wonderland/natspec-smells",
"version": "1.1.5",
"description": "Automatically identify missing or incomplete natspec",
"homepage": "https://github.com/defi-wonderland/natspec-smells#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-wonderland/natspec-smells.git"
},
"license": "MIT",
"author": "Wonderland",
"main": "lib/main.js",
"types": "lib/types.d.ts",
"bin": "./lib/main.js",
"scripts": {
"build": "tsc",
"lint:check": "prettier --check .",
"lint:fix": "sort-package-json && prettier --write .",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky install",
"start": "ts-node ./src/main.ts",
"test": "jest ./test"
},
"lint-staged": {
"package.json": "sort-package-json",
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"fast-glob": "3.3.2",
"solc-typed-ast": "18.2.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@faker-js/faker": "8.3.1",
"@types/jest": "29.5.11",
"@types/node": "20.10.7",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.2.2",
"pinst": "3.0.0",
"prettier": "2.8.8",
"sort-package-json": "2.4.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}