-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "lint-diff",
"version": "1.2.0",
"description": ":nail_care: Run eslint only in the changed parts of the code",
"main": "./dist/lint-diff.js",
"bin": "./dist/lint-diff.js",
"scripts": {
"build": "webpack",
"lint": "eslint 'src/**/*.js'",
"prepublish": "npm run build",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grvcoelho/lint-diff.git"
},
"keywords": [
"linter",
"eslint",
"diff",
"git"
],
"author": "Guilherme Coelho <guilhermervcoelho@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grvcoelho/lint-diff/issues"
},
"homepage": "https://github.com/grvcoelho/lint-diff#readme",
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-ramda": "^1.6.1",
"eslint": "^4.7.2",
"eslint-config-pagarme-base": "^2.0.0",
"eslint-plugin-import": "^2.7.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"bluebird": "^3.5.1",
"commander": "^2.15.1",
"execa": "^0.10.0",
"meow": "^5.0.0",
"ramda": "^0.25.0"
},
"peerDependencies": {
"eslint": "4.x"
}
}