This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
forked from TomFrost/Cryptex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
{
"name": "@socialtables/cryptex",
"version": "2.0.0",
"description": "Secure secret storage and cryptographic key retrieval for Node.js",
"main": "src/index.js",
"bin": "./src/cli.js",
"scripts": {
"clean": "rm -rf node_modules coverage",
"test": "npm run lint && npm run test-cov && npm run check-cov",
"mocha": "mocha",
"test-cov": "istanbul cover node_modules/.bin/_mocha",
"check-cov": "istanbul check-coverage --statements 99 --branches 98 --functions 100 --lines 99",
"lint": "eslint ./src ./test",
"changeset": "changeset",
"release": "st-changeset release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socialtables/cryptex.git"
},
"files": [
"src"
],
"engines": {
"node": ">=8"
},
"keywords": [
"crypto",
"key",
"keys",
"secret",
"secrets",
"passwords",
"encrypt",
"decrypt",
"encryption",
"decryption"
],
"author": "Tom Shawver <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/socialtables/cryptex/issues"
},
"homepage": "https://github.com/socialtables/Cryptex#readme",
"yargs": {
"parse-numbers": false
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@socialtables/changesets": "^1.2.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^3.0.1",
"istanbul": "^0.4.4",
"mocha": "^6.2.0",
"nock": "^11.3.1",
"sinon": "^7.4.2",
"tmp": "^0.1.0"
},
"dependencies": {
"aws-sdk": "^2.4.6",
"lodash.clone": "^4.5.0",
"request": "^2.73.0",
"yargs": "^4.8.0"
}
}