-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.68 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
{
"name": "lint-diff-line",
"version": "1.2.16",
"description": ":Run eslint only in the changed parts of the code",
"source": "src/index.js",
"main": "./dist/lint-diff-line.js",
"bin": {
"lint-diff-line": "dist/lint-diff-line.js"
},
"scripts": {
"build": "rm -rf ./dist ./parcel-cache && parcel build",
"lint": "eslint 'src/**/*.js'",
"deploy": "npm run build && npm version patch && npm publish",
"test": "npm run lint",
"test:fullFiles": "npm run build && node dist/lint-diff-line.js -r 51de70ce67623017fbf5346c391628b8b211b014..53da502f61d442b283f775a8573dc7b336f85081 -f 'src/testFiles/**' -F true ",
"test:newLines": "npm run build && node dist/lint-diff-line.js -r 51de70ce67623017fbf5346c391628b8b211b014..53da502f61d442b283f775a8573dc7b336f85081 -f 'src/testFiles/**'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reharik/lint-diff-line.git"
},
"keywords": [
"linter",
"eslint",
"diff",
"git"
],
"author": "Raif Harik <harik.raif@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reharik/lint-diff-line/issues"
},
"homepage": "https://github.com/reharik/lint-diff-line#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"babel-loader": "^8.3.0",
"babel-plugin-add-module-exports": "0.2.1",
"eslint": "^8.39.0",
"eslint-config-pagarme-base": "^3.0.0",
"eslint-plugin-import": "^2.27.5",
"parcel": "^2.8.3"
},
"dependencies": {
"eslint-formatter-lint-diff-line-formatter": "^1.0.5",
"execa": "0.10.0",
"meow": "^5.0.0",
"minimatch": "^3.1.2",
"ramda": "0.25.0"
},
"peerDependencies": {
"eslint": "^8.39.0"
}
}