-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "definitelynotstandard",
"version": "1.0.1",
"description": "Definitely not a standard JavasScript linter",
"main": "index.js",
"bin": "./bin/cmd.js",
"scripts": {
"test": "prettier --write index.js options.js bin/cmd.js",
"show-rules": "eslint-index eslintrc.json",
"show-rules-disabled": "eslint-index eslintrc.json --status omitted off",
"show-summary": "eslint-index eslintrc.json --format table"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colestrode/definitelynotstandard.git"
},
"keywords": [
"standard",
"linting",
"definitely",
"not"
],
"author": "Cole Furfaro-Strode",
"license": "MIT",
"bugs": {
"url": "https://github.com/colestrode/definitelynotstandard/issues"
},
"homepage": "https://github.com/colestrode/definitelynotstandard#readme",
"dependencies": {
"eslint": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"standard-engine": "^7.0.0"
},
"devDependencies": {
"eslint-index": "^1.3.0",
"prettier": "^1.4.4"
}
}