forked from mvayngrib/react-native-randombytes
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.27 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "randombytes-pure",
"version": "4.1.0",
"description": "JS-only implementation of randomBytes, intended for use with React Native and other limited runtimes",
"main": "./dist/index.js",
"repository": "github:RobertFischer/randombytes-pure",
"scripts": {
"test": "tsc --noEmit --project tsconfig.json && jest",
"build": "tsc --project tsconfig.json",
"release": "yarn test && yarn build && semantic-release",
"head:checkCommit": "commitlint --from=HEAD~1",
"pretty": "prettier --insert-pragma --write ./*.ts ./*.js ./*.md",
"prepublish": "yarn build"
},
"keywords": [
"react-native",
"browser",
"randomBytes",
"rng",
"ios",
"android",
"mobile",
"web",
"sjcl"
],
"dependencies": {
"buffer": "^5.6.0",
"sjcl": "^1.0.8"
},
"author": "RobertFischer",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/node": "^14.0.23",
"@types/sjcl": "^1.0.29",
"babel-jest": "^26.1.0",
"conventional-changelog-conventionalcommits": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-extended": "^0.11.5",
"lint-staged": "^10.2.11",
"precise-commits": "^1.0.2",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"typescript": "^3.9.6"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && yarn test && yarn build && ( git add ./dist || echo 'No changes to ./dist' )",
"pre-push": "yarn test"
}
},
"prettier": {
"useTabs": true,
"semi": true
},
"lint-staged": {
"*.{yaml,yml,js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"private": false,
"files": [
"package.json",
"yarn.lock",
"dist/*"
],
"publicConfig": {
"access": "public"
}
}