-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "@tsevdos/el-utils",
"version": "0.7.0",
"description": "elUtils is a utility library with a handful of greek utility functions, such as validations, geolocations zip codes and many more.",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "John Tsevdos <[email protected]> (https://tsevdos.me)",
"homepage": "https://tsevdos.me",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsevdos/elUtils/issues"
},
"scripts": {
"build": "tsup",
"prerelease": "npm run check",
"release": "npm run build && changeset publish",
"changeset": "npx changeset",
"check": "npm run tsc && npm run lint && npm run prettier && npm run test",
"tsc": "tsc --noEmit",
"lint": "eslint",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/tsevdos/elUtils"
},
"keywords": [
"greek",
"utilities",
"dates",
"geo",
"validation"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.12.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"jest": "29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"publishConfig": {
"access": "public"
}
}