-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "omar-khayyam",
"version": "1.0.0",
"description": "A zero-dependency lightweight date conversion library for most popular calendars [Jalali, Gregorian, Islamic]",
"main": "dist/index.js",
"module": "dist/index.es.js",
"license": "MIT",
"private": false,
"homepage": "https://github.com/zoom-studio/omar-khayyam",
"files": [
"dist",
"README.md"
],
"repository": {
"url": "https://github.com/zoom-studio/zoom-react-components.git",
"type": "git"
},
"author": {
"name": "zoom-studio",
"url": "https://github.com/zoom-studio"
},
"keywords": [
"node",
"node lib",
"date",
"date convert",
"date conversion",
"conversion",
"convert",
"javascript date",
"typescript date",
"nodejs date"
],
"scripts": {
"start": "jest --silent=true",
"dev": "jest --watchAll --silent=false",
"ci": "jest --ci --silent=false",
"prepare": "husky install",
"build": "yarn clean && rollup -c --bundleConfigAsCjs && yarn clean:dist",
"publish": "npm publish --access public",
"clean": "rimraf dist tsconfig.tsbuildinfo .rollup.cache yarn-error.log",
"clean:deep": "yarn clean && rimraf node_modules yarn.lock",
"clean:dist": "rimraf dist/__tests__ dist/utilities",
"lint:ts": "eslint ./source --ext .ts,.tsx --fix --quiet",
"lint:staged": "./node_modules/.bin/lint-staged",
"prettify:check": "npx prettier --check .",
"prettify:write": "npx prettier --write ."
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:ts"
]
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"rimraf": "^5.0.1",
"rollup": "^3.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.1.3"
}
}