-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "dom-slider",
"version": "2.1.6",
"description": "Plain JavaScript version of jQuery's slideToggle(), slideDown(), & slideUp(), but does not use display: none.",
"main": "dist/dom-slider.js",
"scripts": {
"babel": "babel src/dom-slider.js --out-file dist/dom-slider.js",
"babel:watch": "babel src --watch --out-file dist/dom-slider.js",
"prepublish": "npm run babel"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrentonCozby/dom-slider.git"
},
"keywords": [
"jQuery",
"animation",
"slideDown",
"slideUp",
"slideToggle",
"vanilla-js"
],
"author": "Brenton Cozby <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrentonCozby/dom-slider/issues"
},
"homepage": "https://github.com/BrentonCozby/dom-slider#readme"
}