-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 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
{
"name": "theresnotime.co.uk",
"version": "1.0.0",
"description": "Website for TheresNoTime",
"scripts": {
"test": "npm run check && npm run prettier",
"test-all": "npm run check && npm run prettier && npm run check-buttons",
"prettier": "prettier --check public/ scripts/",
"validate": "w3c-html-validator --delay=1000 '--exclude=fedi-archive' '--ignore-config=.validatorrc' --continue public/",
"add-hash": "node scripts/add-hash.js && npm test",
"check": "node scripts/check.js",
"fix": "prettier --write public/ scripts/",
"host": "firebase emulators:start",
"new": "node scripts/new.js",
"check-buttons": "node scripts/check-buttons.js",
"generate-buttons": "node scripts/generate-buttons.js && npm run fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theresnotime/theresnotime.co.uk.git"
},
"author": "TheresNoTime",
"license": "MIT",
"bugs": {
"url": "https://github.com/theresnotime/theresnotime.co.uk/issues"
},
"homepage": "https://github.com/theresnotime/theresnotime.co.uk#readme",
"devDependencies": {
"browser-sync": "^3.0.2",
"firebase": "^11.0.2",
"prettier": "^3.4.1",
"w3c-html-validator": "^1.8.2"
}
}