-
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) · 827 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 827 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": "boringdroid.github.io",
"version": "1.0.0",
"description": "The boringdorid project's site.",
"main": "index.html",
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boringdroid/boringdroid.github.io.git"
},
"author": "",
"license": "Apache License, Version 2.0",
"bugs": {
"url": "https://github.com/boringdroid/boringdroid.github.io/issues"
},
"homepage": "https://github.com/boringdroid/boringdroid.github.io",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"prettier": "3.2.5"
}
}