-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"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/index.pug",
"predeploy": "rm -rf .parcel-cache && rm -rf dist && npx parcel build src/index.pug --public-url 'https://jriggles.github.io/' && cp CNAME ./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.12.0",
"@parcel/transformer-sass": "^2.12.0",
"gh-pages": "^6.2.0",
"process": "^0.11.10",
"svgo": "^3.3.2"
},
"dependencies": {
"bulma": "^1.0.0"
},
"targets": {
"main": false
}
}