-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "prettier-diff",
"version": "0.0.16",
"description": "`git diff` wrapper for semantic JavaScript/JSON diffs",
"bin": {
"prettier-diff": "bin/prettier-diff.js",
"textconv-prettier": "bin/textconv-prettier.sh"
},
"files": [
"bin/**"
],
"scripts": {
"lint": "eslint bin/*.js",
"pretest": "yarn lint",
"test": "test/test.sh"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"semi": false
},
"repository": "https://github.com/josephfrazier/prettier-diff.git",
"author": "Joseph Frazier <[email protected]>",
"license": "MIT",
"dependencies": {
"fs-extra": "^4.0.1",
"fugit": "^1.1.0",
"is-port-reachable": "^2.0.0",
"json-align": "^0.1.0",
"json-stable-stringify": "^1.0.1",
"prettier_d": "5.7.4",
"rw": "^1.3.3",
"shell-tag": "^1.0.1",
"stable": "^0.1.6"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}