-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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": "@codementor/bro",
"version": "2.7.0",
"description": "A bro will lint and prettify your code",
"main": "index.js",
"bin": {
"bro": "./bin/cli.js"
},
"scripts": {
"test": "tape test/*.test.js",
"npm-publish:beta": "npm publish --tag beta",
"npm-publish": "npm publish",
"release:beta": "release pre beta && yarn npm-publish:beta",
"release:patch": "release patch && yarn npm-publish",
"release:minor": "release minor && yarn npm-publish",
"release:major": "release major && yarn npm-publish"
},
"keywords": [
"JavaScript Standard Style",
"eslint",
"standard",
"prettier"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CodementorIO/bro.git"
},
"author": "Ian Wang <[email protected]> (https://github.com/IanWang)",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodementorIO/bro/issues"
},
"homepage": "https://github.com/CodementorIO/bro#readme",
"dependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.5.1",
"standard-engine": "^15.0.0-0"
},
"devDependencies": {
"release": "^6.3.0",
"tape": "^5.5.2"
}
}