forked from mvayngrib/react-native-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.07 KB
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
{
"author": "sacru2red <sacru2red@gmail.com>",
"name": "@react-native-module/crypto",
"description": "implementation of crypto for React Native",
"version": "4.1.0",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "lib/types/index.d.ts",
"source": "src/index",
"react-native": "src/index.ts",
"homepage": "https://github.com/react-native-module/crypto",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-module/crypto.git"
},
"scripts": {
"lint": "eslint",
"build": "rimraf ./lib && rollup -c ./rollup.config.js && npm run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir lib/types",
"release": "npm run build && release-it",
"test": "npm run unit",
"unit": "echo 'tests not set up for React Native yet'"
},
"dependencies": {
"@react-native-module/randombytes": "^4.0.0",
"browserify-cipher": "^1.0.0",
"browserify-sign": "^4.2.5",
"create-ecdh": "^4.0.4",
"create-hash": "^1.1.0",
"create-hmac": "^1.1.0",
"diffie-hellman": "^5.0.0",
"inherits": "^2.0.1",
"public-encrypt": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"hash-test-vectors": "~1.3.2",
"pbkdf2": "^3.1.2",
"pseudorandombytes": "^2.0.0",
"release-it": "^19.2.4",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"tape": "~2.3.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@react-native-module/pbkdf2": "*",
"react": "*",
"react-native": "*"
},
"keywords": [
"react native",
"react-native",
"crypto",
"ios",
"android",
"web"
],
"license": "MIT"
}