-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
39
40
41
42
43
44
45
46
47
{
"name": "html5-starter",
"version": "0.2.0",
"description": "HTML5 boilerplate for Gitpod 🎈",
"author": {
"name": "Nicholas Berlette",
"email": "[email protected]",
"url": "https://n.berlette.com/"
},
"license": "MIT",
"repository": "github:nberlette/html5-starter",
"homepage": "https://n.berlette.com/html5-starter",
"bugs": "https://github.com/nberlette/html5-starter/issues",
"readme": "https://github.com/nberlette/html5-starter#readme",
"keywords": [
"html5",
"template",
"boilerplate",
"starter"
],
"files": [
"assets",
"apple-touch-icon.png",
"favicon.ico",
"site.webmanifest",
"index.html",
"404.html",
"humans.txt",
"robots.txt"
],
"scripts": {
"dev": "sirv --port 3000 --dev",
"test": "echo 'no test script specified' && exit 1",
"start": "npm run dev"
},
"prettier": {
"semi": true,
"arrowParens": "always",
"useTabs": false,
"tabWidth": 2,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "css"
},
"devDependencies": {
"sirv-cli": "^1.0.14"
}
}