-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.42 KB
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
{
"name": "essential-common-utils",
"version": "1.14.2",
"main": "dist/Common.js",
"types": "dist/Common.d.ts",
"exports": {
".": {
"types": "./dist/Common.d.ts",
"require": "./dist/Common.js",
"default": "./dist/Common.js"
}
},
"sideEffects": false,
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:write": "prettier . --write",
"test": "jest",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"files": [
"dist/",
"README.md"
],
"keywords": [],
"author": "Basal John",
"license": "MIT",
"description": "A collection of essential utilities for various tasks",
"repository": {
"type": "git",
"url": "git+https://github.com/basal-john/essential-common-utils.git"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"jest": "^30.4.2",
"prettier": "^3.9.5",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0"
},
"dependencies": {
"extract-urls": "^1.4.1"
}
}