-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
154 lines (154 loc) · 4.13 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "@calidy/dayjs-calendarsystems",
"version": "1.11.3",
"description": "Calendar Systems Management for Day.js",
"main": "dayjs-calendarsystems.cjs.min.js",
"umd:main": "dayjs-calendarsystems.umd.min.js",
"web": "dayjs-calendarsystems.umd.min.js",
"module": "dayjs-calendarsystems.esm.min.js",
"jsnext:main": "dayjs-calendarsystems.esm.min.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "./node_modules/.bin/eslint src/* test/*",
"prettier": "prettier --write \"docs/**/*.md\"",
"babel": "cross-env BABEL_ENV=build babel src --out-dir esm --copy-files && node esm",
"build": "rm -Rf calendarSystems calendarUtils ./*.min.js index.d.ts && node builder && yarn size",
"sauce": "npx karma start karma.sauce.conf.js",
"test:sauce": "npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2 && npm run sauce -- 3",
"size": "size-limit",
"release": "standard-version $* && git push --follow-tags && yarn run npmpublish",
"prepublishOnly": "npm run build",
"npmpublish": "npm publish --access public --auth-type legacy"
},
"pre-commit": [
"lint"
],
"size-limit": [
{
"limit": "3.99 KB",
"path": "dayjs-calendarsystems.umd.min.js",
"ignore": [
"dayjs"
]
},
{
"limit": "3.99 KB",
"path": "dayjs-calendarsystems.cjs.min.js",
"ignore": [
"dayjs"
]
},
{
"limit": "3.99 KB",
"path": "dayjs-calendarsystems.esm.min.js",
"ignore": [
"dayjs"
]
}
],
"jest": {
"testEnvironment": "node",
"roots": [
"test"
],
"testRegex": "test/(.*?/)?.*test.js$",
"testEnvironmentOptions": {
"url": "http://localhost"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*"
],
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
},
"keywords": [
"dayjs",
"date",
"time",
"immutable",
"moment",
"calendars",
"calendar systems",
"jalali",
"persian",
"gregory",
"gregorian",
"islamic",
"hijri",
"hebrew",
"jewish",
"ethiopic",
"ethiopian",
"amazigh",
"amazigh calendar",
"dayjs plugin",
"dayjs calendar systems",
"dayjs calendars",
"dayjs-calendarsystems",
"calidy calendar systems"
],
"author": "Calidy.com (https://calidy.com/)",
"contributors": [
"Amir Moradi (https://amirmoradi.com/)"
],
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://calidy.com/engineering",
"repository": {
"type": "git",
"url": "https://github.com/calidy-com/dayjs-calendarsystems.git"
},
"files": [
"calendarSystems",
"calendarUtils",
"*.md",
"*.min.js",
"index.d.ts"
],
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@size-limit/preset-small-lib": "^8.2.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"babel-plugin-external-helpers": "^6.22.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"gzip-size-cli": "^5.1.0",
"jasmine-core": "^5.0.0",
"jest": "^29.5.0",
"karma": "^6.4.2",
"karma-jasmine": "^5.1.0",
"karma-sauce-launcher": "^4.3.6",
"mockdate": "^3.0.5",
"moment": "2.29.4",
"moment-timezone": "0.5.43",
"ncp": "^2.0.0",
"nodemon": "^2.0.22",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"rollup": "^3.21.8",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-size": "^0.3.1",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^8.2.4",
"standard-version": "9.5.0",
"typescript": "^5.0.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"babel-preset-minify": "^0.5.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}