-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "@cloudcannon/eslint-config-cloudcannon",
"version": "1.0.0",
"description": "Eslint config for CloudCannon",
"main": "src/index.js",
"bin": "./src/cli/create.js",
"scripts": {
"lint-autofix": "eslint --fix .",
"lint-code": "eslint .",
"lint": "npm run lint-autofix && npm run lint-code"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/eslint-config-cloudcannon.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/eslint-config-cloudcannon/issues",
"email": "[email protected]"
},
"keywords": [
"lint",
"javascript",
"cloudcannon",
"eslint"
],
"files": [
"src/**/*.js"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Jonatah Benatti",
"license": "MIT",
"dependencies": {
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0"
},
"devDependencies": {
"typescript": "^4.0.5"
}
}