-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.57 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": "@ironarachne/word-generator",
"version": "1.1.3",
"description": "Library for generation of fictional words",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"biome": "biome ci src/*.ts",
"build": "tsc",
"docs": "typedoc --out docs src/*.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleDirectories": [
"<rootDir>/../",
"<rootDir>/src/",
"node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"rootDir": ".",
"transform": {
"^.+\\.(t|j)s$": [
"ts-jest",
{
"useESM": true
}
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironarachne/word-generator.git"
},
"keywords": [
"words"
],
"author": "Ben Overmyer <ben@overmyer.net> (https://benovermyer.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ironarachne/word-generator/issues"
},
"homepage": "https://github.com/ironarachne/word-generator#readme",
"dependencies": {
"@ironarachne/rng": "^1.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@biomejs/biome": "1.5.3",
"@jest/globals": "^29.1.1",
"babel-jest": "^29.1.1",
"jest": "^29.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.7",
"typescript": "^5.1.6"
}
}