forked from airbnb/javascript
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 KB
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
{
"name": "toneden-javascript-style-guide",
"version": "2.1.0",
"description": "A semi-pro approach to JavaScript.",
"scripts": {
"lint": "markdownlint --config linters/.markdownlint.json README.md */README.md",
"pretest": "npm run --silent lint",
"test": "npm run --silent test:config && npm run --silent test:config:base"
},
"repository": {
"type": "git",
"url": "https://github.com/ToneDen/javascript-style-guide.git"
},
"keywords": [
"style guide",
"lint",
"toneden",
"es6",
"es2015",
"react",
"jsx"
],
"author": "Harrison Shoff <hi@hshoff.com> (https://twitter.com/hshoff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ToneDen/javascript-style-guide/issues"
},
"homepage": "https://github.com/ToneDen/javascript-style-guide",
"devDependencies": {
"markdownlint-cli": "^0.3.1"
},
"peerDependencies": {
"@babel/eslint-parser": ">= 7",
"eslint-plugin-import": ">= 2.12.0",
"eslint-plugin-react": ">= 7.7.0",
"eslint": ">= 4"
},
"dependencies": {
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2"
}
}