-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "custom-rand-str",
"version": "1.0.5",
"description": "Get a customizable random string",
"repository": "https://github.com/Ibrar-Akhtar/custom-rand-str.git",
"keywords": [
"randomstring",
"random text",
"string",
"rand-str",
"rand-string",
"random string",
"customized random string",
"custom random string"
],
"main": "index.js",
"scripts": {
"test": "jest -i",
"test:watch": "jest -i --watchAll",
"coverage": "jest -i --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"author": "ibrar-akhtar",
"license": "MIT",
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.0",
"jest": "^29.4.2",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4"
}
}