-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.21 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
{
"name": "toyjhlee.github.com",
"version": "0.0.1",
"description": "삶은 나를 발견하는 과정이 아니라, 나를 창조하는 과정이다",
"repository": {
"type": "git",
"url": "https://github.com/toyjhlee/toyjhlee.github.com"
},
"keywords": [
"front-end",
"html",
"css",
"javascript",
"react"
],
"author": "toyjhlee",
"license": "MIT",
"bugs": {
"url": "https://github.com/toyjhlee/toyjhlee.github.com/issues"
},
"homepage": "https://toyjhlee.github.io/",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"uglify-js": "^3.8.0"
},
"scripts": {
"uglify": "uglifyjs assets/js/vendor/jquery/jquery-3.4.1.js assets/js/plugins/jquery.fitvids.js assets/js/plugins/jquery.greedy-navigation.js assets/js/plugins/jquery.magnific-popup.js assets/js/plugins/jquery.ba-throttle-debounce.js assets/js/plugins/smooth-scroll.js assets/js/plugins/gumshoe.js assets/js/_main.js -c -m -o assets/js/main.min.js",
"add-banner": "node banner.js",
"watch:js": "onchange \"assets/js/**/*.js\" -e \"assets/js/main.min.js\" -- npm run build:js",
"build:js": "npm run uglify && npm run add-banner"
}
}