This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.99 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
{
"name": "Owl",
"description": "A browser integration for KeePass 2.x databases",
"version": "3.0.0",
"author": "Søren Johanson <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack --progress --config webpack.config.js",
"build-dll": "cross-env NODE_ENV=dll webpack --config webpack.dll.js --progress",
"dev": "webpack --progress --watch --config webpack.config.js",
"dev-tests": "cross-env NODE_ENV=test webpack --watch --config webpack.test.config.js --progress",
"bundle": "./packer.sh chrome && ./packer.sh firefox",
"clean": "rm -rf build/ *.zip manifest.json demo*"
},
"dependencies": {
"axios": "^0.19.0",
"babel-regenerator-runtime": "^6.5.0",
"base64-arraybuffer": "^0.1.5",
"case": "^1.5.4",
"font-awesome": "^4.7.0",
"json-formatter-js": "^2.2.0",
"kdbxweb": "^1.2.4",
"keeweb": "https://github.com/keeweb/keeweb",
"materialize-css": "^0.100.2",
"pako": "^1.0.6",
"vue": "^2.4.4",
"vue-simple-spinner": "^1.2.8",
"webdav": "^3.3.0",
"xmldom": "^0.1.27"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"gulp": "^3.9.1",
"ignore-loader": "^0.1.2",
"mocha": "^4.1.0",
"mocha-loader": "^1.1.2",
"node-sass": "^4.13.0",
"sass-loader": "^6.0.6",
"should": "^13.2.0",
"sinon": "^4.1.4",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"url-loader": "^0.6.2",
"vue-loader": "11.1.4",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.1",
"webpack-stream": "^4.0.0"
}
}