-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 753 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 753 Bytes
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
{
"name": "website",
"version": "1.0.0",
"description": "Personal website of Bart Niessen",
"main": "index.html",
"devDependencies": {
"less": "latest",
"less-plugin-clean-css": "latest"
},
"scripts": {
"css": "lessc --no-color --clean-css=\"--advanced\" css/total.less > css/css.min.css",
"docker": "npm run css && docker build -t bart-www . && docker image save -o ./docker/bart-www-image.tar bart-www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brutusn/Website.git"
},
"keywords": [
"personal",
"website"
],
"author": "Bart Niessen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brutusn/Website/issues"
},
"homepage": "http://www.bartniessen.nl"
}