-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
{
"name": "css64",
"version": "0.3.0",
"description": "Get that oldschool C64 look!",
"scripts": {
"clean:cache": "rimraf ./.parcel-cache",
"clean:dist": "rimraf ./dist",
"clean:docs": "rimraf ./docs",
"predev": "run-p clean:dist",
"dev": "parcel ./src/index.html",
"prebuild": "run-p clean:cache clean:dist",
"build": "parcel build ./src/index.html",
"build:github": "parcel build ./src/index.html --public-url https://armselig.github.io/css64/",
"predeploy": "git checkout master && run-p build:github clean:docs",
"deploy": "cp -R ./dist ./docs && git add ./docs/. && git commit -m \"ci(github): deploy to github pages\" && git push"
},
"keywords": [
"css",
"c64",
"scss",
"retrocomputing"
],
"author": "Hendrik Neumann <henne@armselig.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/armselig/css64.git"
},
"homepage": "https://armselig.github.io/css64/",
"devDependencies": {
"@parcel/transformer-sass": "^2.4.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.4.1",
"rimraf": "^3.0.0",
"sass": "^1.49.11"
},
"overrides": {
"@parcel/optimizer-htmlnano": {
"htmlnano@2.0.1": "2.0.0"
}
},
"engines": {
"npm": ">=8.3.0"
}
}