forked from keeweb/kdbxweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.04 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
{
"name": "kdbxweb",
"version": "1.9.0",
"description": "Kdbx KeePass database reader for web",
"repository": {
"type": "git",
"url": "https://github.com/keeweb/kdbxweb.git"
},
"main": "dist/kdbxweb.js",
"scripts": {
"test": "npm run tests:cover",
"start": "npm run eslint && npm run build",
"eslint": "eslint lib test",
"build": "npm run clean && npm run pack:tests && npm run tests:cover && npm run pack:dist-debug && npm run pack:dist-pro",
"cichecks": "npm run clean && npm run eslint && npm run pack:tests && npm run tests:cover",
"clean": "rimraf dist",
"pack:dist-pro": "webpack --progress --colors --display-modules --config build/config/webpack.config.js",
"pack:dist-debug": "webpack --progress --colors --debug --devtool source-map --output-pathinfo --config build/config/webpack.config.js",
"pack:tests": "webpack --progress --colors --config build/config/webpack.tests.config.js",
"tests:plain": "mocha --recursive -R spec",
"tests:cover": "istanbul cover -x 'lib/support/**' node_modules/mocha/bin/_mocha -- --recursive -R spec"
},
"keywords": [
"kdbx",
"keepass"
],
"author": "Antelle",
"license": "MIT",
"devDependencies": {
"base64-loader": "^1.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expect.js": "^0.3.1",
"exports-loader": "^0.7.0",
"fs-walk": "0.0.2",
"istanbul": "^0.4.5",
"mocha": "^7.2.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"stats-webpack-plugin": "^0.7.0",
"terser-webpack-plugin": "^3.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"pako": "github:keeweb/pako#653c0b00d8941c89d09ed4546d2179001ec44efc",
"xmldom": "github:keeweb/xmldom#ec8f61f723e2f403adaf7a1bbf55ced4ff1ea0c6"
}
}