-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.19 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.19 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
{
"name": "diceware",
"version": "1.0.0",
"description": "First, feel free to check out the live demo, running at [https://www.dmuth.org/diceware/](https://www.dmuth.org/diceware/)",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=18"
},
"type": "commonjs",
"scripts": {
"test": "mocha ./tests/test.js",
"clean": "rm -rfv dist/*bundle.js* node_modules package-lock.json",
"build": "webpack --mode production",
"dev-build": "webpack --watch --mode development",
"release-build": "rm -rvf release && mkdir release && cp -r index.html favicon.ico README.md robots.txt release/ && cp -r dist release/ && cp -r assets release/ && cp -r fonts release/ && zip -r diceware.zip release && ls -l release/ && rm -rfv release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmuth/diceware.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmuth/diceware/issues"
},
"homepage": "https://github.com/dmuth/diceware#readme",
"devDependencies": {
"mocha": "^11.7.5",
"should": "^13.2.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
},
"dependencies": {
}
}