-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "@ironarachne/rng",
"version": "1.0.2",
"description": "Random number generation and selection of items from arrays.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"biome": "biome ci src/index.ts",
"build": "tsc",
"docs": "typedoc --out docs src/index.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"globals": {
"ts-jest": {
"useESM": true
}
},
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironarachne/rng.git"
},
"keywords": [
"random"
],
"author": "Ben Overmyer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ironarachne/rng/issues"
},
"homepage": "https://github.com/ironarachne/rng#readme",
"dependencies": {
"random": "^4.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@biomejs/biome": "1.5.3",
"@jest/globals": "^29.6.2",
"babel-jest": "^29.6.2",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.7",
"typescript": "^5.1.6"
}
}