-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "get-random-values",
"version": "3.0.0",
"description": "`window.crypto.getRandomValues` with fallback to Node.js crypto",
"keywords": [
"crypto"
],
"repository": "github:kenany/get-random-values",
"license": "MIT",
"author": "Kenan Yildirim <kenan@kenany.me> (https://kenany.me/)",
"main": "index.js",
"types": "index.d.ts",
"files": [
"CHANGELOG.md",
"index.d.ts",
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"engines": {
"node": "18 || >=20"
},
"scripts": {
"clean": "rimraf --glob test/**/*.d.ts *.d.ts",
"lint": "eslint .",
"release": "semantic-release",
"type-coverage": "type-coverage --at-least 100 --detail --strict",
"prebuild": "npm run clean",
"build": "tsc",
"pretest": "npm run build",
"test": "tape test/*.js",
"posttest": "npm run lint && npm run type-coverage",
"prepack": "npm run build"
},
"dependencies": {
"global": "^4.4.0"
},
"devDependencies": {
"@kenan/eslint-config": "^11.1.11",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^18.2.4",
"@types/lodash.isfunction": "^3.0.9",
"@types/tape": "^5.6.5",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"is-browser": "^2.1.0",
"lodash.isfunction": "^3.0.9",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"tape": "^5.9.0",
"type-coverage": "^2.29.7",
"typescript": "^5.7.2"
},
"browser": {
"crypto": false
}
}