forked from prettier-solidity/prettier-plugin-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.36 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
86
87
{
"name": "prettier-plugin-solidity",
"version": "1.0.0-beta.11",
"description": "A Prettier Plugin for automatically formatting your Solidity code.",
"main": "src",
"scripts": {
"eslint": "eslint 'scripts/**' 'src/**' '__tests__/**' 'tests/**'",
"generateindexes": "cross-env SCRIPT=true node scripts/generateIndexes.js",
"lint": "npm run eslint && npm run prettier -- --list-different",
"lint:fix": "npm run eslint -- --fix && npm run prettier -- --write",
"prettier": "prettier './*.{js,json,md,yml}' '{scripts,src,__tests__,tests}/**/*.js'",
"test": "jest",
"test:all": "cross-env FULL_TEST=1 jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prettier-solidity/prettier-plugin-solidity.git"
},
"keywords": [
"ethereum",
"plugin",
"prettier",
"solidity"
],
"author": {
"email": "[email protected]",
"name": "Mattia Richetto"
},
"contributors": [
{
"email": "[email protected]",
"name": "Jack Bates"
},
{
"email": "[email protected]",
"name": "Federico Bond"
},
{
"email": "[email protected]",
"name": "Jed Fox"
},
{
"email": "[email protected]",
"name": "Mudit Gupta"
},
{
"email": "[email protected]",
"name": "Franco Victorio"
},
{
"email": "[email protected]",
"name": "Klaus Hott Vidal"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/prettier-solidity/prettier-plugin-solidity/issues"
},
"homepage": "https://github.com/prettier-solidity/prettier-plugin-solidity#readme",
"engines": {
"node": ">=12"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.23.2",
"jest": "^26.6.3",
"jest-mock-now": "^1.3.0",
"jest-snapshot-serializer-ansi": "^1.0.0",
"jest-snapshot-serializer-raw": "^1.1.0",
"jest-watch-typeahead": "^0.6.2",
"outdent": "^0.8.0",
"solc": "^0.8.3"
},
"dependencies": {
"@solidity-parser/parser": "^0.13.0",
"dir-to-object": "^2.0.0",
"emoji-regex": "^9.2.2",
"escape-string-regexp": "^4.0.0",
"prettier": "^2.2.1",
"semver": "^7.3.5",
"solidity-comments-extractor": "^0.0.7",
"string-width": "^4.2.2"
}
}