forked from airbnb/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
{
"name": "eslint-config-zoro-style",
"version": "2.0.0",
"description": "A mostly reasonable approach to JavaScript.",
"scripts": {
"pretest": "npm run --silent lint",
"test": "npm run --silent test:config && npm run --silent test:config:base",
"test:config": "cd packages/eslint-config-airbnb; npm test",
"test:config:base": "cd packages/eslint-config-airbnb-base; npm test",
"pretravis": "npm run --silent lint",
"travis": "npm run --silent travis:config && npm run --silent travis:config:base",
"travis:config": "cd packages/eslint-config-airbnb; npm run travis",
"travis:config:base": "cd packages/eslint-config-airbnb-base; npm run travis"
},
"repository": {
"type": "git",
"url": "https://github.com/zorotools/javascript.git"
},
"keywords": [
"style guide",
"lint",
"airbnb",
"es6",
"es2015",
"react",
"jsx"
],
"author": "Harrison Shoff <[email protected]> (https://twitter.com/hshoff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zorotools/javascript/issues"
},
"homepage": "https://github.com/zorotools/javascript",
"devDependencies": {
"babel-preset-airbnb": "^2.4.0",
"babel-tape-runner": "^2.0.1",
"editorconfig-tools": "^0.1.1",
"eslint": "^4.15.0",
"eslint-find-rules": "^3.1.1",
"eslint-plugin-import": "^2.8.0",
"in-publish": "^2.0.0",
"markdownlint-cli": "^0.3.1",
"safe-publish-latest": "^1.1.1",
"tape": "^4.8.0"
},
"peerDependencies": {
"eslint": "^4.15.0",
"eslint-plugin-import": "^2.8.0"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"eslint-restricted-globals": "^0.1.1"
}
}