-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.35 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"devDependencies": {
"c8": "^9.1.0",
"chai": "^5.1.1",
"copy-webpack-plugin": "^12.0.2",
"html-minifier": "^4.0.0",
"jsdoc": "^4.0.3",
"mocha": "^10.4.0",
"sass": "^1.77.2",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"name": "simplepass",
"description": "A Javascript password generator.",
"version": "11.0.1-Beta",
"browser": "./simplePass/browser/simplePass.js",
"directories": {
"test": "test",
"src": "src",
"lib": "simplePass"
},
"repository": {
"type": "git",
"url": "git+https://github.com/staticBanter/simplePass.git"
},
"keywords": [
"password",
"generator"
],
"author": {
"name": "Jordan Vezina (staticBanter)",
"email": "[email protected]",
"url": "https://staticblogs.ca/users/staticBanter"
},
"licenses": [
{
"type": "GPL-3.0",
"url": "https://www.gnu.org/licenses/gpl-3.0.html"
}
],
"bugs": {
"url": "https://github.com/staticBanter/simplePass/issues"
},
"homepage": "https://github.com/staticBanter/simplePass#readme",
"private": true,
"scripts": {
"webpack-build": "webpack build --profile --json=webpack.profile.json --env production --config webpack.config.js",
"webpack-dev-build": "webpack build --env development --config webpack.config.js",
"webpack-watch": "webpack build --env development --config webpack.config.js --watch",
"start": "webpack serve",
"tsc": "tsc --project .",
"tsc-watch": "tsc --watch --project .",
"docs-build": "jsdoc ./javascript/module/ --tutorials ./docs --configure ./jsdoc.config.json",
"html-min": "html-minifier --config-file html-minifier.config.json --input-dir ./site/prod/docs/ --output-dir ./site/prod/docs/ --file-ext html",
"sass-build": "sass site/src/main.scss:site/prod/main.css --style=compressed --no-source-map",
"sass-watch": "sass site/src/main.scss:site/prod/main.css --style=compressed --no-source-map --watch --update",
"prod": "npm run production",
"test": "mocha",
"coverage": "c8 --check-coverage=80 mocha",
"production": "npm run tsc && npm run docs-build && npm run webpack-build && npm run html-min && npm run sass-build && npm run test"
},
"type": "module",
"dependencies": {
"normalize.css": "^8.0.1"
}
}