forked from bartificer/xkpasswd-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "xkpasswdjs",
"version": "2.5.0",
"description": "The Official JavaScript Port of Crypt::HSXKPasswd",
"author": "Bartificer creations",
"license": "ISC",
"main": "src/index.mjs",
"type": "module",
"dependencies": {
"@fontsource/noto-sans": "^5.0.18",
"@mermaid-js/mermaid-cli": "^9.2.2",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.2",
"crypto-random-string": "^5.0.0",
"is-it-check": "^1.0.12",
"jquery": "^3.7.1",
"loglevel": "^1.8.1",
"randomstring": "^1.3.0"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"docdash": "^2.0.2",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {},
"testPathIgnorePatterns": [
"/node_modules/",
"/archive/"
],
"testMatch": [
"**/?*.test.mjs"
]
},
"scripts": {
"docs": "docDir='./dist/docs'; [[ -e \"$docDir\" ]] && rm -rf \"$docDir/\"*; npx jsdoc -c ./jsdoc.conf.json --destination \"$docDir/\" --template node_modules/docdash",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"cov": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage=true",
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack --config webpack.config.mjs --color"
}
}