-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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-netzkern-base",
"version": "0.0.0",
"description": "Netzkern base JS ESLint config",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"tests-only": "babel-tape-runner ./test/test-*.js",
"prepublish": "(in-install || eslint-find-rules --unused) && (not-in-publish || npm test) && safe-publish-latest",
"pretest": "npm run --silent lint",
"test": "npm run --silent tests-only",
"pretravis": ":",
"travis": "npm run --silent test",
"posttravis": ":"
},
"repository": {
"type": "git",
"url": "https://github.com/netzkern/eslint-config-netzkern"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"netzkern",
"javascript",
"styleguide"
],
"author": "Dustin Deus (https://twitter.com/@dustindeus)",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/netzkern/eslint-config-netzkern/issues"
},
"homepage": "https://github.com/netzkern/eslint-config-netzkern",
"devDependencies": {
"babel-preset-airbnb": "^2.4.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^4.8.0",
"eslint-find-rules": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"in-publish": "^2.0.0",
"safe-publish-latest": "^1.1.1",
"tape": "^4.8.0"
},
"peerDependencies": {
"eslint": "^4.8.0",
"eslint-plugin-import": "^2.7.0"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"eslint-restricted-globals": "^0.1.1"
}
}