-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "prettier-plugin-solidity",
"version": "1.0.0-alpha.15",
"description": "prettier plugin for solidity",
"main": "src",
"scripts": {
"coverage": "codecov",
"eslint": "eslint --ignore-pattern 'src/prettier-comments/**' 'src/**'",
"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": "[email protected]",
"name": "Mattia Richetto"
},
"contributors": [
{
"email": "[email protected]",
"name": "Federico Bond"
},
{
"email": "[email protected]",
"name": "Jed Fox"
},
{
"email": "[email protected]",
"name": "Franco Victorio"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/prettier-solidity/prettier-plugin-solidity/issues"
},
"homepage": "https://github.com/prettier-solidity/prettier-plugin-solidity#readme",
"devDependencies": {
"codecov": "^3.0.4",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"jest": "^23.5.0",
"jest-watch-typeahead": "^0.2.0"
},
"dependencies": {
"emoji-regex": "^7.0.3",
"escape-string-regexp": "^1.0.5",
"extract-comments": "^1.1.0",
"prettier": "^1.15.3",
"solidity-parser-antlr": "^0.3.3",
"string-width": "^3.0.0"
}
}