-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.29 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
{
"name": "portfolio-theme",
"version": "0.6.0",
"description": "Jekyll Theme for Personal Portfolio Website",
"scripts": {
"copyBootstrap": "cpx \"node_modules/bootstrap/dist/js/bootstrap.min.js\" assets/js/bootstrap && cpx \"node_modules/bootstrap/dist/js/bootstrap.min.js.map\" assets/js/bootstrap && cpx \"node_modules/bootstrap/scss/**/*.scss\" _sass/bootstrap",
"copyJQuery": "cpx \"node_modules/jquery/dist/jquery.min.js\" assets/js/jquery",
"copyPopper": "cpx \"node_modules/popper.js/dist/umd/popper.min.js\" assets/js/popper && cpx \"node_modules/popper.js/dist/umd/popper.min.js.map\" assets/js/popper",
"copyAll": "npm run copyBootstrap && npm run copyJQuery && npm run copyPopper",
"test": "bundle exec jekyll build",
"debug": "bundle exec jekyll serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codytwinton/portfolio-theme.git"
},
"keywords": [
"jekyll"
],
"author": "Cody Winton <cody.t.winton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codytwinton/portfolio-theme/issues"
},
"homepage": "https://codytwinton.github.io/portfolio-theme/",
"devDependencies": {
"cpx": "^1.5.0"
},
"dependencies": {
"bootstrap": "^4.3.1",
"jquery": "^3.3.1",
"popper.js": "^1.14.7"
}
}