-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "slide-element",
"version": "2.3.1",
"description": "A tiny, accessible, Promise-based, jQuery-reminiscent library for hiding and showing elements in a sliding fashion.",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/alexmacarthur/slide-element",
"scripts": {
"start": "vite serve",
"build": "vite build && tsc",
"prettify": "prettier \"src/**/*.ts\" --write",
"test": "vitest src"
},
"files": [
"src",
"dist"
],
"keywords": [
"jQuery",
"slide open",
"slide closed",
"slideToggle",
"slideUp",
"slideDown",
"auto height",
"animate"
],
"author": "Alex MacArthur <alex@macarthur.me> (https://macarthur.me)",
"license": "ISC",
"devDependencies": {
"@testing-library/dom": "^8.19.0",
"happy-dom": "^8.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"terser": "^5.16.1",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vitest": "^0.25.7"
},
"lint-staged": {
"*.{js,ts}": "prettier --write"
}
}