-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
69
{
"name": "get-random-values-polypony",
"version": "1.0.0",
"description": "Synchronous randombytes function that works in node, the browser & react-native!",
"main": "node.js",
"private": true,
"browser": "browser.js",
"types": "index.d.ts",
"homepage": "https://github.com/@consento/get-random-values-polypony",
"react-native": "react-native.js",
"scripts": {
"lint": "standard",
"typings": "npm run build && npx --quiet -p typescript -p ts-node -c \"ts-node test/typings.ts\"",
"build": "node ./build",
"test": "npm run lint && npm run test",
"test:unit": "node e2e/node test/index.js",
"test:browser:local": "npm run build && ./e2e/browser-local",
"test:browser:local:firefox": "npm run test:browser:local -- firefox",
"test:browser:local:chrome": "npm run test:browser:local -- chrome",
"test:browser:stack": "npm run build && ./e2e/browser-stack",
"test:node": "npm run build && node e2e/node dist/test/index.js",
"test:rn:android": "rn-tape run android ./dist /test/react-native",
"test:rn:ios": "rn-tape run ios ./dist /test/react-native",
"test:rn:expo": "rn-tape run expo ./dist /test/react-native"
},
"keywords": [
"react-native",
"expo",
"sync",
"random",
"randomValues",
"randomBytes"
],
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"nativePackage": true,
"license": "MIT",
"optionalDependencies": {
"@leichtgewicht/quickhost": "^1.1.0",
"browserify": "^16.5.1",
"chromedriver": "^83.0.0",
"cross-fetch": "^3.0.4",
"form-data": "^3.0.0",
"geckodriver": "^1.19.1",
"ngrok": "^3.2.7",
"selenium-webdriver": "^4.0.0-alpha.7",
"sourceify": "^1.0.0",
"standard": "^14.3.4",
"wd": "^1.12.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"babel-preset-minify": "^0.5.1",
"cpy": "^8.1.0",
"del": "^5.1.0",
"fresh-tape": "^5.0.2",
"globby": "^11.0.1",
"rn-tape": "^1.0.0-3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/get-random-values-polypony.git"
},
"bugs": {
"url": "https://github.com/consento-org/get-random-values-polypony/issues"
}
}