-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
76 lines (76 loc) · 2.72 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
{
"name": "kdbxweb",
"version": "2.1.1",
"description": "Kdbx KeePass database reader for web",
"repository": {
"type": "git",
"url": "https://github.com/keeweb/kdbxweb.git"
},
"main": "dist/kdbxweb.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "npm run tests:node",
"start": "npm run eslint && npm run build",
"tsc": "tsc",
"eslint": "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",
"pack:dist-debug": "webpack --progress --mode=development --devtool source-map --config conf/webpack.config.ts",
"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"
],
"author": "Antelle",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@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": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"base64-loader": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"expect.js": "^0.3.1",
"exports-loader": "^3.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"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": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@xmldom/xmldom": "^0.7.4",
"fflate": "^0.7.1"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/antelle"
}
}