-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1001 Bytes
/
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": "prodbuild",
"version": "1.7.0",
"description": "Simple and fast packager and development tool for no-framework websites.",
"scripts": {
"test": "node test/index.js",
"test:build": "node test/index.js --build",
"test:serve:start": "node test/index.js --serveStart",
"test:serve:prod": "node test/index.js --serveStart --prod",
"test:serve:kill": "node test/index.js --serveKill",
"test:serve:purge": "node test/index.js --serveKill --purge"
},
"homepage": "https://github.com/GriffFerguson/prodbuild#readme",
"bugs": {
"url": "https://github.com/GriffFerguson/prodbuild/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/GriffFerguson/prodbuild.git"
},
"bin": {
"prodbuild": "./bin/index.js"
},
"author": "Griffin Ferguson",
"license": "MIT",
"dependencies": {
"commander": "^8.3.0",
"terser": "^5.10.0"
},
"devDependencies": {
"@types/node": "^20.8.3",
"typescript": "^5.2.2"
}
}