-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
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
{
"name": "eslint-config-motor-talk",
"version": "5.0.1",
"description": "ESLint configuration for the MOTOR-TALK.de platform",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint .",
"tests-only": "node_modules/.bin/babel-tape-runner ./test/test-*.js",
"test": "npm-run-all --parallel lint tests-only"
},
"repository": {
"type": "git",
"url": "https://github.com/technology-ebay-de/eslint-config-motor-talk/"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"mobile",
"javascript",
"styleguide"
],
"author": "Patrick Hund <pahund@team.mobile.de>",
"contributors": [
{
"name": "Jake Teton-Landis",
"url": "https://twitter.com/jitl"
},
{
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
},
{
"name": "Harrison Shoff",
"url": "https://twitter.com/hshoff"
},
{
"name": "Jonathan Krause",
"email": "jokrause@team.mobile.de"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.0.0",
"babel-tape-runner": "^2.0.0",
"eslint": "^4.6.1",
"eslint-plugin-react": "^7.4.0-rc.1",
"npm-run-all": "^4.1.5",
"tape": "^4.6.3"
},
"peerDependencies": {
"eslint": ">=4.0.0",
"eslint-plugin-react": ">=7.0.0"
}
}