-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "timepicker.js",
"version": "4.1.0",
"description": "A lightweight, customizable, TimePicker",
"author": {
"name": "Jonatas Walker",
"email": "[email protected]"
},
"homepage": "https://github.com/jonataswalker/timepicker.js",
"license": "MIT",
"type": "module",
"jsdelivr": "./dist/timepicker.iife.js",
"exports": "./dist/timepicker.js",
"types": "./dist/timepicker.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^16 || ^18 || ^20",
"npm": ">=8"
},
"scripts": {
"dev": "vite --port 4000",
"dev:kill": "kill-port 4000",
"build": "rimraf ./dist && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"test:pre": "npm run dev &",
"test:post": "npm run dev:kill",
"test": "playwright test",
"pretest": "npm run test:pre",
"posttest": "npm run test:post",
"test:ui": "npm run test:pre && playwright test --ui",
"release": "release-it --no-npm.publish"
},
"repository": {
"type": "git",
"url": "git://github.com/jonataswalker/timepicker.js.git"
},
"bugs": {
"url": "https://github.com/jonataswalker/timepicker.js/issues"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@types/node": "^20.11.24",
"auto-changelog": "^2.4.0",
"eslint-config-jwalker": "^10.2.0",
"husky": "^9.0.11",
"kill-port": "^2.0.1",
"release-it": "^17.1.1",
"rimraf": "^5.0.5",
"sass": "^1.71.1",
"typescript": "^5.3.3",
"vite": "^5.1.5",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-css-injected-by-js": "^3.4.0",
"vite-plugin-dts": "^3.7.3"
},
"dependencies": {
"mitt": "^3.0.1"
}
}