-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
88 lines (88 loc) · 3.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "kdbxweb",
"version": "2.2.0",
"description": "Kdbx KeePass database reader for web",
"main": "dist/kdbxweb.js",
"private": false,
"types": "dist/types/index.d.ts",
"homepage": "https://keeweb.info",
"repository": {
"type": "git",
"url": "https://github.com/keeweb/kdbxweb.git"
},
"author": {
"name": "Antelle",
"email": "[email protected]",
"url": "https://antelle.net"
},
"engines": {
"node": "^18.18.0"
},
"license": "MIT",
"readme": "README.md",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/antelle"
},
"scripts": {
"test": "npm run tests:node",
"start": "npm run lint && npm run build",
"tsc": "tsc",
"lint": "eslint lib test conf scripts",
"build": "npm run clean && npm run tests:cover && npm run pack:tests && npm run pack:dist-debug && npm run pack:dist-prod",
"clean": "rimraf dist .nyc_output coverage",
"pack:dist-prod": "webpack --progress --mode=production --config conf/webpack.config.ts --mode production",
"pack:dist-debug": "webpack --progress --mode=development --devtool source-map --config conf/webpack.config.ts --mode development",
"webpack-stats": "webpack --mode=production --json --config conf/webpack.config.ts > dist/stats.json",
"pack:tests": "webpack --progress --config conf/webpack.tests.config.ts",
"tests:node": "mocha --require ts-node/register --recursive --reporter spec test/**/*.spec.ts",
"tests:cover": "nyc --reporter=lcov npm run tests:node",
"script:dump-header": "ts-node scripts/dump-header",
"script:kdbx-size-profiler": "ts-node scripts/kdbx-size-profiler",
"script:kdbx-to-xml": "ts-node scripts/kdbx-to-xml",
"script:make-big-files": "ts-node scripts/make-big-files",
"script:save-perf-test": "ts-node scripts/save-perf-test"
},
"keywords": [
"kdbx",
"keepass"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@nodelib/fs.walk": "^1.2.8",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^9.0.0",
"@types/terser-webpack-plugin": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"base64-loader": "^1.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "17.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-mocha": "^10.5.0",
"expect.js": "^0.3.1",
"exports-loader": "^3.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"stats-webpack-plugin": "^0.7.0",
"terser-webpack-plugin": "^5.2.3",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"fflate": "^0.7.1"
}
}