-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1013 Bytes
/
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
{
"name": "qcTimepicker",
"description": "A lightweight, accessible, highly customizable dropdown time picker jQuery plugin.",
"version": "1.2.0",
"browser": "dist/qcTimepicker.min.js",
"private": false,
"author": "Vincent Diep",
"repository": {
"type": "git",
"url": "https://github.com/RinkAttendant6/qcTimepicker.git"
},
"license": "MPL-2.0",
"peerDependencies": {
"jquery": "^1.2||^2||^3"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-qunit": "^6.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"node-qunit-puppeteer": "^2.1.0",
"prettier": "2.8.8",
"qunit": "^2.17.2",
"rollup": "^2.60.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "rollup --config",
"lint": "eslint src/*.js",
"prepublish": "npm run build",
"test": "node test/index.mjs",
"prepare": "husky"
}
}