forked from passbolt/passbolt_browser_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.28 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
{
"name": "passbolt_-_open_source_password_manager",
"version": "3.4.0",
"license": "AGPL-3.0",
"copyright": "Copyright 2021 Passbolt SA",
"description": "Passbolt web extension for the open source password manager for teams",
"homepage": "https://www.passbolt.com",
"repository": "https://github.com/passbolt/passbolt_browser_extension",
"engines": {
"node": ">=14.15.4",
"npm": ">=6.14.10"
},
"dependencies": {
"downloadjs": "^1.4.7",
"i18next": "^19.8.7",
"i18next-http-backend": "^1.1.1",
"ip-regex": "^4.3.0",
"jssha": "~2.3.1",
"kdbxweb": "2.1.1",
"locutus": "~2.0.9",
"npm-force-resolutions": "0.0.10",
"openpgp": "4.10.9",
"papaparse": "^5.2.0",
"passbolt-styleguide": "3.4.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"validator": "^13.7.0",
"webextension-polyfill": "^0.4.0",
"xregexp": "~3.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.0",
"babel-loader": "^8.2.3",
"crx": "^5.0.1",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-no-unsanitized": "^3.2.0",
"eslint-plugin-react": "^7.27.1",
"grunt": "^1.0.3",
"grunt-browserify": "^6.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.0",
"grunt-shell": "^3.0.1",
"i18next-scanner": "github:passbolt/i18next-scanner#master",
"jest": "^27.4.0",
"jest-environment-jsdom": "^27.4.0",
"jest-environment-node": "^27.4.0",
"web-ext": "^6.6.0",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"glob-parent": "5.1.2"
},
"scripts": {
"preinstall": "npx npm-force-resolutions || echo 1",
"build": "npm run build-content-scripts; npm run build-data;",
"build-content-scripts": "webpack --config webpack-content-scripts.config.js",
"build-data": "webpack --config webpack-data.config.js",
"test": "grunt test",
"test-coverage": "grunt test-coverage",
"eslint": "grunt eslint",
"eslint-fix": "grunt eslint --fix"
}
}