forked from LinusU/react-native-get-random-values
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
67
68
{
"author": "sacru2red <[email protected]>",
"name": "@react-native-module/get-random-values",
"description": "implementation of getRandomValues for React Native",
"version": "1.8.5-2",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "lib/types/index.d.ts",
"browser": {
"react-native": false
},
"react-native": {
"crypto": false,
"react-native": "react-native"
},
"source": "src/index",
"homepage": "https://github.com/react-native-module/get-random-values#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-module/get-random-values.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": "echo 'tests not set up for React Native yet'"
},
"dependencies": {
"@react-native-module/utility": "^0.0.3",
"fast-base64-decode": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/react-native": "^0.69.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"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",
"release-it": "^15.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"typescript": "^4.7.4"
},
"license": "MIT",
"keywords": [
"react-native",
"react native",
"Crypto.getRandomValues",
"get-random-values",
"getRandomValues",
"rng",
"ios",
"android",
"web"
],
"bugs": {
"url": "https://github.com/react-native-module/get-random-values/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}