-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.3 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
38
{
"name": "vanilla-flat-white",
"version": "1.0.0",
"description": "a collection of microprojects in HTML, CSS, and Vanilla JS",
"main": "index.js",
"scripts": {
"build": "rm -rf dist/ && tsc build.ts && node build.js",
"ghp-clean": "git reset --hard origin/main && git branch -D gh-pages",
"ghp-make": "rm .gitignore && git add dist/ && git commit -m \"Deploy to gh-pages\" && git subtree split --prefix dist -b gh-pages && git push -f origin gh-pages:gh-pages",
"deploy": "npm run build && npm run ghp-make && npm run ghp-clean",
"start": "npx http-server ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vandivier/vanilla-flat-white.git"
},
"keywords": [
"html",
"css",
"javascript",
"ecmascript",
"vanilla",
"js",
"microfrontends"
],
"author": "John Vandivier",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vandivier/vanilla-flat-white/issues"
},
"homepage": "https://github.com/Vandivier/vanilla-flat-white#readme",
"dependencies": {
"@nodelib/fs.walk": "^1.2.8",
"@types/node": "^16.11.10",
"typescript": "^4.5.2"
}
}