-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 927 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 927 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
{
"name": "utiljs",
"version": "1.0.0",
"description": "",
"main": "util.js",
"scripts": {
"test": "jest --watchAll --verbose",
"test-coverage": "jest --coverage",
"lint": "eslint --fix util.js",
"format": "prettier -w .",
"start":"node util.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vimalraj571/UtilJS.git"
},
"keywords": [],
"author": "Vimal Raj",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vimalraj571/UtilJS/issues"
},
"homepage": "https://github.com/Vimalraj571/UtilJS#readme",
"dependencies": {
"crypto": "^1.0.1",
"jest": "^27.5.1",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
}
}