-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 921 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
{
"name": "eslint-pretty",
"version": "0.2.2",
"description": "Wrap eslint and esformatter to format and pretty-print from stdin",
"main": "index.js",
"dependencies": {
"esformatter": "^0.10.0",
"eslint": "^5.16.0"
},
"devDependencies": {
"tape": "^4.10.2"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/tape/bin/tape ./lib/**/**/*.test.js ./test/**/**/*.test.js"
},
"bin": {
"eslint-pretty": "./bin/eslint-pretty.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugeats/eslint-pretty.git"
},
"keywords": [
"eslint",
"esformatter",
"pretty-print",
"formatter",
"javascript",
"pretty",
"es6",
"es2015"
],
"author": "Chadwick Dahlquist",
"license": "MIT",
"bugs": {
"url": "https://github.com/bugeats/eslint-pretty/issues"
},
"homepage": "https://github.com/bugeats/eslint-pretty#readme"
}