This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.66 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
{
"name": "@cypress/eslint-plugin-json",
"version": "0.0.0-development",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .ts,.js,.json,.eslintrc .",
"lint-fix": "yarn lint --fix",
"semantic-release": "semantic-release",
"test": "jest",
"test-watch": "DEBUG='json*' DEBUG_DEPTH=10 yarn jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"common-tags": "^1.8.0",
"debug": "^4.1.1",
"diff": "^4.0.1",
"json5": "^2.1.0",
"line-column": "^1.0.2",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"sort-package-json": "^1.22.1"
},
"devDependencies": {
"@cypress/eslint-plugin-dev": "^3.2.0",
"@cypress/eslint-plugin-json": "^3.0.3",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-sort-requires": "^2.1.0",
"fs-extra": "^8.0.1",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lint-staged": "^9.2.1",
"semantic-release": "^15.13.16",
"typescript": "^3.5.2"
},
"peerDependencies": {
"eslint": ">= 3.2.1"
},
"description": "lint and autofix json",
"license": "MIT",
"author": "bkucera",
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/eslint-plugin-json.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,eslintrc}": [
"eslint --fix",
"git add"
]
}
}