-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.61 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
53
54
55
56
{
"name": "mds.persian.datetime",
"version": "2.1.0",
"description": "Persian DateTime in TypeScript",
"license": "MIT",
"type": "module",
"types": "./dist/esm/mds.persian.datetime.d.ts",
"main": "./dist/cjs/mds.persian.datetime.js",
"module": "./dist/esm/mds.persian.datetime.js",
"exports": {
"import": "./dist/esm/mds.persian.datetime.js",
"require": "./dist/cjs/mds.persian.datetime.js"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"lint": "eslint .",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"author": {
"email": "mds_soft@yahoo.com",
"name": "Mohammad Dayyan",
"url": "https://github.com/Mds92/mds-persian-datetime-package"
},
"repository": {
"type": "public",
"url": "https://github.com/Mds92/mds-persian-datetime-package"
},
"homepage": "https://github.com/Mds92/mds-persian-datetime-package",
"devDependencies": {
"@babel/parser": "^7.29.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"babel-eslint": "^10.1.0",
"eslint": "^9.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}