-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "introscroll",
"version": "1.2.0",
"description": "Full screen intro section",
"keywords": [
"Intro",
"Fullscreen",
"Scroll",
"Swipe"
],
"homepage": "https://introscroll.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/IntroScroll/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/introscroll.min.js",
"repository": {
"type": "git",
"url": "github:scriptex/IntroScroll"
},
"scripts": {
"dist": "babel src/introscroll.js --out-file dist/introscroll.js",
"minify": "babel src/introscroll.js --out-file dist/introscroll.min.js --presets minify,@babel/env",
"build": "yarn dist && yarn minify",
"copy": "cp dist/introscroll.js demo/introscroll.js",
"deploy": "yarn build && yarn copy"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"babel-loader": "9.2.1",
"babel-minify": "0.5.2"
}
}