forked from airbnb/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.56 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
<<<<<<< HEAD
"name": "eslint-config-bstd-base",
"version": "1.0.11",
"description": "Shareable ESlint config based on AirBnb's coding standard and Idiomatic's rules",
"homepage": "",
"author": {
"name": "Vladimir Cutkovic",
"email": "vladimir.cutkovic@gmail.com",
"url": ""
},
"files": [
"lib",
"rules",
"legacy.js"
],
"main": "./index.js",
"keywords": [
""
],
"devDependencies": {
"eslint": "^3.1.1",
"eslint-config-xo-space": "^0.15.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.0",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^3.0.1",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "http://vladimir@stash.futureads.com/scm/ad/ad.git",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "MIT"
=======
"name": "airbnb-style",
"version": "2.0.0",
"description": "A mostly reasonable approach to JavaScript.",
"scripts": {
"preinstall": "npm run install:config && npm run install:config:base",
"install:config": "cd packages/eslint-config-airbnb && npm prune && npm install",
"install:config:base": "cd packages/eslint-config-airbnb-base && npm prune && npm install",
"lint": "markdownlint --config linters/.markdownlint.json README.md */README.md",
"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/airbnb/javascript.git"
},
"keywords": [
"style guide",
"lint",
"airbnb",
"es6",
"es2015",
"react",
"jsx"
],
"author": "Harrison Shoff <hi@hshoff.com> (https://twitter.com/hshoff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/javascript/issues"
},
"homepage": "https://github.com/airbnb/javascript",
"devDependencies": {
"markdownlint-cli": "^0.3.1"
}
>>>>>>> 103f5e2a5901392878889ec1f1ad4e59c8d65dc3
}