-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.39 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.39 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
{
"name": "prettier-plugin-solidity",
"version": "2.0.0-beta.8",
"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 test.config.js",
"eslint": "eslint 'src/**' 'tests/**'",
"lint": "npm run eslint && npm run prettier -- --list-different",
"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"
},
"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": "[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"
},
{
"email": "[email protected]",
"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": ">=18"
},
"devDependencies": {
"@babel/code-frame": "^7.26.2",
"@types/jest": "^29.5.14",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"c8": "^10.1.3",
"cross-env": "^7.0.3",
"eslint": "^9.23.0",
"eslint-config-prettier": "10.1.1",
"esm-utils": "^4.3.0",
"jest": "^29.7.0",
"jest-light-runner": "^0.6.0",
"jest-snapshot-serializer-ansi": "^2.2.1",
"jest-snapshot-serializer-raw": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lines-and-columns": "^2.0.4",
"prettier": "^3.5.3",
"solc": "^0.8.29",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@nomicfoundation/slang": "1.0.0",
"@solidity-parser/parser": "^0.19.0",
"semver": "^7.7.1"
},
"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"
]
}
}