-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.13 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
{
"name": "cocha-lakes",
"version": "1.0.0",
"description": "Website with map animations about lakes",
"main": "src/index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel src/js/caption.js src/js/animations.js src/js/slideshow.js src/js/script.js -o src/js/full.script.js && npx minify src/js/full.script.js > src/js/script.min.js && npx postcss src/css/style.css --use autoprefixer --no-map -o src/css/style.prefix.css && npx minify src/css/style.prefix.css > src/css/style.min.css && npx minify src/index.html > src/index.min.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabrizzio-gz/cocha-lakes.git"
},
"author": "fgz",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/fabrizzio-gz/cocha-lakes/issues"
},
"homepage": "https://github.com/fabrizzio-gz/cocha-lakes#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"autoprefixer": "^10.2.5",
"minify": "^7.0.1",
"postcss-cli": "^8.3.1"
},
"dependencies": {
"animejs": "^3.2.1"
}
}