-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.62 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
{
"name": "monthpicker-lite-js",
"version": "1.2.0",
"description": "Lightweight datepicker for vanilla js and typescript",
"type": "module",
"main": "dist/monthpicker-lite-js.js",
"module": "dist/monthpicker-lite-js.cjs.",
"types": "dist/monthpicker-lite-js.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/monthpicker-lite-js.js",
"require": "./dist/monthpicker-lite-js.umd.cjs"
},
"./dist/monthpicker-lite-js.css": {
"import": "./dist/monthpicker-lite-js.css",
"require": "./dist/monthpicker-lite-js.css"
}
},
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"build": "tsup",
"test": "jest",
"test:dom": "jest dom.test.ts",
"test:date": "jest date.test.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaseottofy/monthpicker-lite-js.git"
},
"keywords": [
"datepicker",
"monthpicker",
"monthpicker-lite-js",
"monthpicker-lite",
"datepickers",
"monthpickers",
"javascript datepicker",
"typescript datepicker",
"js-datepicker",
"ts-datepicker",
"js-monthpicker",
"ts-monthpicker",
"vanilla-datepicker",
"typescript-datepicker",
"vanilla-monthpicker",
"typescript-monthpicker",
"date",
"vanilla",
"typescript",
"javascript",
"js",
"ts"
],
"author": "Chase Ottofy",
"license": "MIT",
"homepage": "https://github.com/chaseottofy/monthpicker-lite-js#readme",
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.11",
"@jest/globals": "^29.6.4",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/user-event": "^14.4.3",
"@types/eslint": "^8.44.2",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-jest": "^29.6.4",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-unicorn": "^48.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"postcss": "^8.4.29",
"postcss-modules": "^6.0.0",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}