forked from prettier/prettier-eslint-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.09 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "prettier-eslint-cli",
"version": "0.0.0-semantically-released",
"description": "CLI for prettier-eslint",
"main": "dist/no-main.js",
"engines": {
"node": ">=4"
},
"bin": {
"prettier-eslint": "dist/index.js"
},
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && opt --in pre-commit --exec \"npm start validate\""
},
"files": [
"dist"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"arrify": "^1.0.1",
"babel-runtime": "^6.23.0",
"boolify": "^1.0.0",
"camelcase-keys": "^4.1.0",
"chalk": "2.1.0",
"common-tags": "^1.4.0",
"eslint": "^4.5.0",
"find-up": "^2.1.0",
"get-stdin": "^5.0.1",
"glob": "^7.1.1",
"ignore": "^3.2.7",
"indent-string": "^3.1.0",
"lodash.memoize": "^4.1.2",
"loglevel-colored-level-prefix": "^1.0.0",
"messageformat": "^1.0.2",
"prettier-eslint": "^8.0.0",
"rxjs": "^5.3.0",
"yargs": "8.0.2"
},
"devDependencies": {
"all-contributors-cli": "^4.3.0",
"babel-cli": "^6.26.0",
"babel-jest": "20.0.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"eslint-config-kentcdodds": "^12.4.2",
"husky": "0.14.3",
"jest-cli": "20.0.4",
"lint-staged": "4.0.4",
"nps": "^5.1.0",
"nps-utils": "^1.2.0",
"opt-cli": "^1.5.1",
"pify": "3.0.0",
"rimraf": "^2.6.1",
"semantic-release": "7.0.2",
"spawn-command": "0.0.2",
"strip-indent": "^2.0.0",
"yargs-parser": "7.0.0"
},
"lint-staged": {
"*.+(js|json)": [
"node ./dist/index --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/prettier/prettier-eslint-cli.git"
},
"bugs": {
"url": "https://github.com/prettier/prettier-eslint-cli/issues"
},
"homepage": "https://github.com/prettier/prettier-eslint-cli#readme"
}