-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "eslint-config-scratch",
"version": "9.0.9",
"description": "Shareable ESLint config for Scratch",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "eslint ."
},
"eslintConfig": {
"extends": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/eslint-config-scratch.git"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/scratchfoundation/eslint-config-scratch/issues"
},
"homepage": "https://github.com/scratchfoundation/eslint-config-scratch#readme",
"keywords": [
"eslint",
"eslintconfig",
"scratch"
],
"optionalDependencies": {
"eslint-plugin-react": ">=7.27.0"
},
"peerDependencies": {
"@babel/eslint-parser": "^7.11.0",
"eslint": "^8.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.26.5",
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@commitlint/types": "19.5.0",
"eslint": "8.57.1",
"husky": "8.0.3",
"scratch-semantic-release-config": "3.0.0",
"semantic-release": "24.2.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}