-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 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
{
"name": "eslint-config-eventbrite",
"version": "5.0.1",
"description": "Eventbrites's base ESLint config that lints ES6+/ES2015+ and adheres to the Eventbrite JavaScript Coding Style Guide",
"main": "index.js",
"scripts": {
"git-tag-version": "node ./_scripts/git-tag-version.js",
"lint": "eslint rules",
"test": "yarn run lint",
"preversion": "yarn test",
"version": "yarn run git-tag-version",
"postversion": "git push && git push --tags",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eventbrite/javascript.git"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"eventbrite",
"javascript",
"styleguide"
],
"author": "Eventbrite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eventbrite/javascript/issues"
},
"homepage": "https://github.com/eventbrite/javascript#readme",
"dependencies": {
"eslint-config-eventbrite-legacy": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^21.15.1"
},
"peerDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1"
},
"engines": {
"node": ">=6"
}
}