-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "prettier-std-cli",
"version": "1.0.0",
"description": "Standalone CLI for prettier -> standard --fix -> Formatted Code",
"keywords": [
"prettier",
"eslint",
"prettier-eslint",
"linter",
"standard",
"standard-engine",
"semistandard",
"cli"
],
"bin": {
"prettier-std": "src/index.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint",
"format": "node ./src/index.js --write '**/*.js'"
},
"dependencies": {
"prettier-eslint-cli": "4.x.x",
"standard": "*",
"standard-prettier-eslint": "*",
"loglevel-colored-level-prefix": "1.x.x"
},
"devDependencies": {
"snazzy": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bySabi/prettier-std-cli.git"
},
"bugs": {
"url": "https://github.com/bySabi/prettier-std-cli/issues"
},
"homepage": "https://github.com/bySabi/prettier-std-cli#readme",
"author": "bySabi Files",
"license": "MIT"
}