forked from prettier-solidity/prettier-plugin-solidity
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.26 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-plugin-solidity",
"version": "1.0.0-alpha.34",
"description": "prettier plugin for solidity",
"main": "src",
"scripts": {
"coverage": "codecov",
"eslint": "eslint --ignore-pattern 'src/prettier-comments/**' 'src/**'",
"generateindexes": "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 '{.,{src,tests_config}/**}/*.{js{,on},md}' 'tests/**/jsfmt.spec.js' '!src/prettier-comments/**/*'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prettier-solidity/prettier-plugin-solidity.git"
},
"keywords": [
"ethereum",
"plugin",
"prettier",
"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"
}
],
"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": ">=8"
},
"devDependencies": {
"codecov": "^3.0.4",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.8.0",
"jest-mock-now": "^1.2.1",
"jest-watch-typeahead": "^0.3.1"
},
"dependencies": {
"dir-to-object": "^2.0.0",
"emoji-regex": "^8.0.0",
"escape-string-regexp": "^2.0.0",
"extract-comments": "^1.1.0",
"prettier": "^1.15.3",
"semver": "^6.3.0",
"solidity-parser-antlr": "^0.4.11",
"string-width": "^4.1.0"
}
}