-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "eslint-config-jd",
"version": "1.0.0",
"description": "JD's base JS ESLint config, following our styleguide",
"main": "index.js",
"scripts": {
"prelint": "editorconfig-tools check * rules/* test/*",
"lint": "eslint --report-unused-disable-directives .",
"pretests-only": "node ./test/requires",
"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/jd-smart-fe/eslint-config-jd"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript",
"styleguide",
"es2015",
"es2016",
"es2017",
"es2018"
],
"author": "zhangning",
"license": "MIT",
"bugs": {
"url": "https://github.com/jd-smart-fe/eslint-config-jd/issues"
},
"homepage": "https://github.com/jd-smart-fe/eslint-config-jd",
"devDependencies": {
"babel-preset-airbnb": "^2.5.1",
"babel-tape-runner": "^2.0.1",
"editorconfig-tools": "^0.1.1",
"eslint": "^4.19.1 || ^5.0.1",
"eslint-find-rules": "^3.3.1",
"eslint-plugin-import": "^2.13.0",
"in-publish": "^2.0.0",
"safe-publish-latest": "^1.1.1",
"tape": "^4.9.1"
},
"peerDependencies": {
"eslint": "^4.19.1 || ^5.0.1",
"eslint-plugin-import": "^2.13.0"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"eslint-restricted-globals": "^0.1.1",
"object.assign": "^4.1.0",
"object.entries": "^1.0.4"
}
}