-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "eslint-config-dlw",
"version": "2.2.0",
"description": "An ESLint config used by the JavaScript developers at Delaware Consulting",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:unused": "eslint-find-rules --unused",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"prepublish": "npm run pretty && npm run lint && npm run test",
"pretty": "prettier --single-quote --trailing-comma es5 --write rules/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/delawarePro/eslint-config-dlw"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript"
],
"author": "delaware BeLux",
"license": "MIT",
"bugs": {
"url": "https://github.com/delawarePro/eslint-config-dlw/issues"
},
"homepage": "https://github.com/delawarePro/eslint-config-dlw",
"devDependencies": {
"eslint": "^4.7.2",
"eslint-find-rules": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.0",
"prettier": "^1.7.0"
}
}