-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "brinkbit-style-es6",
"version": "1.0.4",
"description": "A linting module to enforce Brinkbit's es6 javascript style.",
"main": "index.js",
"scripts": {
"test": "gulp",
"install": "node src/index.js",
"eslint-pre-commit": "./scripts/eslint-pre-commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brinkbit/brinkbit-style-es6.git"
},
"keywords": [
"brinkbit",
"lint",
"style",
"js"
],
"author": "Brinkbit",
"license": "MIT",
"dependencies": {
"babel-eslint": "^4.1.6",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.11.3",
"git-validate": "pimpelsang/git-validate"
},
"devDependencies": {
"bluebird": "^3.1.1",
"buffertools": "^2.1.3",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"fs-extra": "^0.26.3",
"gulp": "^3.9.0",
"gulp-changed": "^1.3.0",
"gulp-chmod": "^1.3.0",
"gulp-eslint": "^1.1.1",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"pre-commit": "^1.1.2",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"peerDependencies": {
"pre-commit": "^1.1.2"
},
"pre-commit": [
"eslint-pre-commit"
]
}