-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.99 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
{
"name": "@pantelwar/js-utils",
"version": "0.3.0",
"description": "A utility package for commonly used javascript functions utilized on daily basis in Pantelwar's projects.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c --bundleConfigAsCjs",
"dev": "rm -rf dist && rollup --watch -c --bundleConfigAsCjs",
"test": "jest",
"prepare": "husky install",
"prepublishOnly": "yarn test && yarn build",
"format": "prettier .",
"lint": "eslint --fix ."
},
"author": "Pantelwar",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.4",
"@types/jest": "^29.5.5",
"@types/mime-types": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"date-fns": "^2.30.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"node-fetch": "2",
"prettier": "^3.0.3",
"rollup": "^3.29.3",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.6.2",
"typedoc": "^0.25.7",
"typescript": "^5.2.2",
"yup": "^1.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pantelwar/js-utils.git"
}
}