-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@ciscospark/web-styleguide",
"version": "0.8.0",
"description": "A somewhat reasonable approach to developing for the web.",
"scripts": {
"build": "./scripts/index.js",
"build:packagejson": "npm run build package.json",
"lint": "npm run lint:md && npm run lint:eslint",
"lint:md": "markdownlint --config linters/.markdownlint.json *.md",
"lint:eslint": "eslint ./"
},
"repository": {
"type": "git",
"url": "https://github.com/ciscospark/web-styleguide.git"
},
"keywords": [
"style guide",
"lint",
"ciscospark",
"es6",
"css",
"es2015",
"react",
"jsx"
],
"contributors": [
"Adam Weeks <adweeks@cisco.com>",
"Bernie Zang <nzang@cisco.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ciscospark/web-styleguide/issues"
},
"homepage": "https://github.com/ciscospark/web-styleguide",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.7.0",
"eslint": "^8.13.0",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-react": "^7.29.4",
"markdownlint-cli": "^0.31.1"
},
"peerDependencies": {
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4"
}
}