-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@jsdevtools/eslint-config-modular",
"version": "8.0.4",
"description": "Modular ESLint configuration",
"keywords": [
"eslintconfig",
"eslint",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"homepage": "https://jstools.dev/eslint-config-modular",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/eslint-config-modular.git"
},
"license": "MIT",
"main": "index.js",
"files": [
"best-practices",
"browser",
"es5",
"es6",
"modules",
"node",
"style",
"test/index.js",
"index.js"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage",
"lint": "eslint .",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm test && npm run bump"
},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.0.4",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"eslint": "^7.4.0",
"glob": "^7.1.4",
"mocha": "^8.0.1",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"shx": "^0.3.2"
},
"peerDependencies": {
"eslint": ">=3.0.0"
}
}