-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1021 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1021 Bytes
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
{
"name": "passbolt_api",
"version": "5.0.0",
"description": "The backend application for the open source password manager for teams",
"repository": {
"url": "https://github.com/passbolt/passbolt_api"
},
"engines": {
"node": ">=16.14.0",
"npm": ">=8.3.1"
},
"keywords": [
"passbolt",
"API"
],
"author": "Passbolt SA",
"license": "AGPL-3.0",
"homepage": "https://www.passbolt.com",
"devDependencies": {
"@babel/runtime": "^7.27.0",
"@babel/runtime-corejs3": "^7.26.10",
"grunt": "^1.5.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"lockfile-lint": "^4.14.1",
"openpgp": "^5.11.3",
"passbolt-styleguide": "^5.11.2"
},
"scripts": {
"lint": "npm run lint:lockfile",
"lint:lockfile": "lockfile-lint --path package-lock.json --allowed-hosts npm github.com --allowed-schemes \"https:\" \"git+ssh:\" --empty-hostname false"
},
"dependencies": {
"micromatch": "^4.0.8",
"react-router-dom": "^5.3.4"
}
}