-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
131 lines (131 loc) · 3.3 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
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
{
"name": "prettier-plugin-solidity",
"version": "1.4.1",
"description": "A Prettier Plugin for automatically formatting your Solidity code.",
"type": "module",
"main": "./src/index.js",
"browser": "./dist/standalone.cjs",
"unpkg": "./dist/standalone.cjs",
"exports": {
".": {
"import": "./src/index.js",
"require": "./dist/standalone.cjs"
},
"./standalone": {
"default": "./dist/standalone.cjs"
}
},
"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",
"prettier": "prettier './*.{js,json,md,yml}' '{src,tests}/**/*.js'",
"test": "NODE_OPTIONS=--loader=esmock jest",
"test:all": "cross-env FULL_TEST=1 NODE_OPTIONS=--loader=esmock 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",
"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": ">=16"
},
"devDependencies": {
"@babel/code-frame": "^7.22.10",
"c8": "^9.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"esm-utils": "^4.1.2",
"esmock": "^2.3.8",
"jest": "^29.6.3",
"jest-light-runner": "^0.6.0",
"jest-snapshot-serializer-ansi": "^2.1.0",
"jest-snapshot-serializer-raw": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lines-and-columns": "^2.0.3",
"prettier": "^3.1.1",
"proxyquire": "^2.1.3",
"solc": "^0.8.26",
"webpack": "^5.88.2",
"webpack-cli": "^6.0.0"
},
"dependencies": {
"@solidity-parser/parser": "^0.18.0",
"semver": "^7.5.4"
},
"peerDependencies": {
"prettier": ">=2.3.0"
},
"browserslist": {
"production": [
">0.5%",
"not ie 11",
"not safari 5.1",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}