-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "esslint",
"version": "0.0.1",
"description": "eslint stylelint",
"main": " ",
"scripts": {
"lint": "./node_modules/.bin/eslint --cache --cache-location=.eslintcache --ext .js,.jsx src/ --fix",
"slint": "./node_modules/.bin/stylelint **/*.less --cache --cache-location .stylelintcache --config .stylelintrc.js --fix",
"precommit": "npm run lint && npm run slint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xQuotes/esslint.git"
},
"keywords": [
"eslint",
"stylelint"
],
"author": "xQuotes",
"license": "ISC",
"bugs": {
"url": "https://github.com/xQuotes/esslint/issues"
},
"homepage": "https://github.com/xQuotes/esslint#readme",
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.4.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"stylelint": "^8.0.0",
"stylelint-config-css-modules": "^1.1.0",
"stylelint-config-standard": "^17.0.0"
}
}