-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.37 KB
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
{
"name": "aflinkupdater",
"private": "true",
"version": "1.0.0",
"description": "A simple page to display USAF links without needing to mess with the portal.",
"main": "updater.js",
"author": "hattmo",
"license": "MIT",
"type": "module",
"scripts": {
"build": "NODE_ENV=production node ./updater.js",
"dev:build": "NODE_ENV=development DOCS_DIR=_site node ./updater.js",
"serve": "npx serve _site -p 4000",
"dev:serve": "npm run dev:build && npm run serve",
"dev:watch": "npm run dev:build && npx serve _site -p 4000 & npx nodemon --watch src --ext pug,json,js,css --exec \"npm run dev:build\"",
"host": "npx http-server _site -p 4000 -o"
},
"devDependencies": {
"@types/node-fetch": "^2.5.12",
"@types/pug": "^2.0.6",
"git-date-extractor": "^4.0.1",
"glob": "^11.0.0",
"image-type": "^5.2.0",
"jstransformer-clean-css": "^2.1.0",
"jstransformer-uglify-js": "^1.2.0",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.10",
"pug": "^3.0.3",
"serve": "^14.2.4",
"sharp": "^0.35.3",
"sugar-date": "^2.0.6",
"uglify-js": "^3.19.3"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dadatuputi/aflink.git"
},
"bugs": {
"url": "https://github.com/dadatuputi/aflink/issues"
},
"homepage": "https://github.com/dadatuputi/aflink#readme"
}