-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "prettier-config-solidity",
"version": "1.9.1",
"description": "conformant configuration for linting solidity files with prettier, based on offical solidity documentation",
"prettier": "prettier-config-solidity",
"types": "src/index.d.ts",
"main": "src/index.js",
"directories": {
"tests": "tests",
"src": "src"
},
"files": [
"src/*"
],
"scripts": {
"test": "jest",
"test:jest": "npx jest -u",
"test:prettier": "npx prettier --loglevel debug --config src/index.js --write tests/*.sol",
"test:full": "FULL_TEST=1 npx jest",
"codecov": "npx codecov",
"lint": "npx eslint . --fix",
"lint:format": "npx prettier --loglevel debug --write .",
"fmt": "npx prettier --config .prettierrc.cjs --write src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sambacha/prettier-config-solidity.git"
},
"keywords": [
"solidity",
"ethereum",
"prettier",
"lint",
"defi",
"prettier config",
"preset",
"airbnb",
"hardhat",
"evm",
"config"
],
"author": "sam bacha <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sambacha/prettier-config-solidity/issues"
},
"homepage": "https://github.com/sambacha/prettier-config-solidity#readme",
"devDependencies": {
"@solidity-parser/parser": "^0.14.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.41",
"@types/prettier": "2.6.3",
"ajv": "^8.6.3",
"ajv-cli": "^5.0.0",
"codecov": "3.8.3",
"dir-to-object": "2.0.0",
"jest": "^27.3.1",
"jest-config": "^27.3.1",
"jest-mock-now": "1.3.0",
"jest-runner-prettier": "^0.3.7",
"jest-snapshot-generate": "^1.0.0",
"jest-snapshot-serializer-ansi": "^1.0.0",
"jest-snapshot-serializer-raw": "^1.2.0",
"jest-watch-typeahead": "0.6.4",
"nyc": "15.1.0",
"outdent": "0.8.0",
"semantic-release": "^19.0.2",
"solc": "^0.8.6",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"typescript": "^4.7.3"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"prettier": "^2.8.1",
"prettier-plugin-solidity": "1.0.0-dev.22"
},
"dependencies": {
"prettier": "^2.8.1",
"prettier-plugin-solidity": "1.0.0-dev.22"
}
}