-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 3.64 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 3.64 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "prettier-plugin-solidity",
"version": "2.3.1",
"description": "A Prettier Plugin for automatically formatting your Solidity code.",
"type": "module",
"main": "./dist/index.js",
"browser": "./dist/standalone.js",
"unpkg": "./dist/standalone.js",
"exports": {
".": "./dist/index.js",
"./standalone": "./dist/standalone.js"
},
"scripts": {
"build": "webpack --env production",
"build:dev": "webpack --env development",
"build:test": "webpack --config webpack.test.config.js",
"eslint": "eslint 'src/**' 'tests/**'",
"lint": "NODE_OPTIONS=\"--max-old-space-size=5120\" npm run eslint && npm run prettier -- --list-different && npm run knip",
"lint:fix": "npm run eslint -- --fix && npm run prettier -- --write",
"prepublishOnly": "npm run build && npx tsc",
"prettier": "prettier './*.{ts,js,cjs,json,md,yml}' '{src,tests}/**/*.{ts,js,cjs}'",
"test": "NODE_OPTIONS=\"--loader=ts-node/esm\" jest",
"test:all": "cross-env FULL_TEST=1 NODE_OPTIONS=\"--loader=ts-node/esm\" c8 jest",
"test:standalone": "cross-env TEST_STANDALONE=1 FULL_TEST=1 jest",
"knip": "knip"
},
"files": [
"src",
"dist/**/*",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prettier-solidity/prettier-plugin-solidity.git"
},
"keywords": [
"ethereum",
"plugin",
"prettier",
"slang",
"solidity"
],
"author": {
"email": "mattia.richetto@gmail.com",
"name": "Mattia Richetto"
},
"contributors": [
{
"email": "jack@nottheoilrig.com",
"name": "Jack Bates"
},
{
"email": "federico.bond@gmail.com",
"name": "Federico Bond"
},
{
"email": "git@twopointzero.us",
"name": "Jed Fox"
},
{
"email": "hi@mudit.blog",
"name": "Mudit Gupta"
},
{
"email": "victorio.franco@gmail.com",
"name": "Franco Victorio"
},
{
"email": "klahott@gmail.com",
"name": "Klaus Hott Vidal"
},
{
"email": "soham@zemse.in",
"name": "Soham Zemse"
}
],
"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": ">=20"
},
"devDependencies": {
"@babel/code-frame": "^7.29.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"c8": "^11.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"esm-utils": "^4.4.2",
"globals": "^17.5.0",
"index-to-position": "^1.2.0",
"jest": "^30.3.0",
"jest-light-runner": "^0.7.11",
"jest-snapshot-serializer-ansi": "^2.2.1",
"jest-snapshot-serializer-raw": "^2.0.0",
"jest-watch-typeahead": "^3.0.1",
"knip": "^6.6.0",
"prettier": "^3.8.3",
"solc": "^0.8.34",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
},
"dependencies": {
"@nomicfoundation/slang": "1.3.4",
"@solidity-parser/parser": "^0.20.2",
"semver": "^7.7.4"
},
"peerDependencies": {
"prettier": ">=3.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}