forked from charlesLoder/hebrew-transliteration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.18 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
{
"name": "hebrew-transliteration",
"version": "2.3.1",
"description": "a package for transliterating Hebrew",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./package.json": "./package.json",
"./schemas": {
"types": "./dist/schemas/index.d.ts",
"require": "./dist/schemas/index.js",
"import": "./dist/schemas/index.js"
},
"./removeOptions": {
"types": "./dist/remove.d.ts",
"require": "./dist/remove.js",
"import": "./dist/remove.js"
}
},
"typesVersions": {
"*": {
"schemas": [
"./dist/schemas/index.d.ts"
],
"removeOptions": [
"./dist/remove.d.ts"
]
}
},
"scripts": {
"build": "tsc",
"test": "clear && jest",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"updates": "ncu"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/charlesLoder/hebrew-transliteration.git"
},
"bugs": {
"url": "https://github.com/charlesLoder/hebrew-transliteration/issues"
},
"homepage": "https://github.com/charlesLoder/hebrew-transliteration",
"keywords": [
"hebrew",
"transliteration",
"SBL",
"Society of Biblical Literature"
],
"author": "Charles Loder",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"esbuild": "^0.17.4",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^39.6.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.4.0",
"npm-check-updates": "^16.6.3",
"npm-dts": "^1.3.12",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"havarotjs": "^0.13.1"
}
}