-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
49 lines (49 loc) · 1016 Bytes
/
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
{
"name": "prettier-standard",
"version": "16.4.1",
"description": "Prettier and standard brought together!",
"main": "src/index.js",
"bin": {
"prettier-standard": "src/cli.js"
},
"keywords": [
"prettier",
"eslint",
"standard",
"linting",
"formatting"
],
"engines": {
"node": ">=8"
},
"author": "Adam Stankiewicz <[email protected]>",
"license": "MIT",
"repository": "sheerun/prettier-standard",
"dependencies": {
"chalk": "^2.4.2",
"diff": "^4.0.2",
"eslint": "^6.8.0",
"execa": "^2.0.4",
"find-up": "^4.1.0",
"get-stdin": "^7.0.0",
"globby": "^6.1.0",
"ignore": "^3.3.7",
"lint-staged": "9.4.3",
"mri": "^1.1.5",
"multimatch": "^3.0.0",
"prettierx": "0.11.3"
},
"devDependencies": {
"isomorphic-git": "1.3.2",
"jest": "25.4.0",
"tmp": "0.1.0"
},
"scripts": {
"format": "node src/cli.js --format",
"lint": "node src/cli.js --lint",
"test": "jest"
},
"files": [
"src"
]
}