-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 834 Bytes
/
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
{
"name": "crypto-json",
"version": "2.1.0",
"description": "recursively encrypt/decrypt object values",
"main": "index.js",
"files": [
"index.js",
"test.js"
],
"devDependencies": {
"mocha": "^8.2.1",
"standard": "^16.0.3"
},
"scripts": {
"test": "./node_modules/.bin/standard && ./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roryrjb/crypto-json.git"
},
"keywords": [
"json",
"encrypt",
"decrypt",
"object",
"crypto"
],
"author": "Rory Bradford",
"license": "MIT",
"bugs": {
"url": "https://github.com/roryrjb/crypto-json/issues"
},
"homepage": "https://github.com/roryrjb/crypto-json#readme",
"dependencies": {
"react-native-crypto": "^2.2.0",
"react-native-randombytes": "^3.6.0"
}
}