-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.24 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.24 KB
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
{
"name": "jriggles.github.io",
"version": "2.0.0",
"description": "My personal website",
"main": "src/js/index.js",
"scripts": {
"rebuild-modules": "rm -rf node_modules && npm install",
"copy static files": "mkdir ./dist/static && cp -R ./src/img/. ./dist/static && cp -R ./src/icons/. ./dist/static",
"dev": "npx parcel src/*.pug && cp src/humans.txt ./dist && cp src/robots.txt ./dist",
"predeploy": "rm -rf .parcel-cache && rm -rf dist && npx parcel build src/*.pug --public-url 'https://jriggles.github.io/' && cp CNAME ./dist && cp src/humans.txt ./dist && cp src/robots.txt ./dist",
"deploy": "npx gh-pages -d dist",
"clean gh-pages cache": "node node_modules/gh-pages/bin/gh-pages-clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JRiggles/jriggles.github.io"
},
"author": "John A. Riggles",
"license": "MIT",
"bugs": {
"url": "https://github.com/JRiggles/jriggles.github.io/issues"
},
"homepage": "https://github.com/JRiggles/jriggles.github.io#readme",
"devDependencies": {
"@parcel/transformer-pug": "^2.16.4",
"@parcel/transformer-sass": "^2.16.4",
"gh-pages": "^6.3.0"
},
"dependencies": {
"bulma": "^1.0.4"
},
"targets": {
"main": false
}
}