-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "kuzzle-vault",
"version": "2.1.0",
"description": "Share and version sensitive data with your team by using cryptography.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "npm run --silent test:lint && npm run test:unit",
"test:unit": "mocha -r ts-node/register test/*.ts",
"test:lint": "eslint src/ test/ --ext .ts --config .eslintrc",
"build": "tsc -p .",
"prepare": "npm run build",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/kuzzle-vault.git"
},
"author": "The Kuzzle Team <support@kuzzle.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kuzzleio/kuzzle-vault/issues"
},
"homepage": "https://github.com/kuzzleio/kuzzle-vault#readme",
"dependencies": {
"yaml": "^2.5.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/mocha": "^8.2.0",
"@types/mock-fs": "^4.13.0",
"@types/node": "^22.0.0",
"@types/should": "^13.0.0",
"@types/sinon": "^17.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint-plugin-kuzzle": "^0.0.12",
"memfs": "^4.11.0",
"mocha": "^8.2.1",
"mock-fs": "5.2.0",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^9.2.3",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
}
}