-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "stacklint",
"version": "0.5.1",
"description": "Code-style and linting presets cli-tool to quickly scaffold project development",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/thesold/stacklint.git"
},
"author": "thesold",
"license": "MIT",
"bugs": {
"url": "https://github.com/thesold/stacklint/issues"
},
"homepage": "https://github.com/thesold/stacklint#readme",
"bin": {
"stacklint": "bin/lint.js"
},
"dependencies": {
"inquirer": "^6.0.0",
"jsonfile": "^4.0.0",
"lodash": "^4.17.10",
"minimist": "^1.2.0"
},
"scripts": {
"precommit": "lint-staged"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"jsonlint": "^1.6.3",
"markdownlint-cli": "^0.11.0",
"babel-eslint": "^8.2.6",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0"
}
}