-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 847 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 847 Bytes
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
{
"name": "eslint-plugin-pii",
"version": "1.0.2",
"description": "PII linting rules for ESLint",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"pii"
],
"author": "Shivam Dhruva <email@shivamdhruva.com>",
"main": "lib/index.js",
"homepage": "https://github.com/shiva-hack/eslint-plugin-pii",
"scripts": {
"test": "mocha tests --recursive",
"format": "prettier -w ."
},
"peerDependencies": {
"eslint": ">=4.19.1"
},
"dependencies": {
"escape-string-regexp": "^4.0.0",
"ignore": "^5.1.8",
"requireindex": "~1.1.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"mocha": "^7.2.0",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"url": "https://github.com/shiva-hack/eslint-plugin-pii.git"
},
"license": "ISC"
}