-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 1.95 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
{
"name": "greek-conversion",
"author": "Antoine Boquet",
"license": "agpl-3.0",
"version": "0.14.1",
"description": "A small library to convert a polytonic greek string from/into various representations.",
"keywords": [
"greek",
"polytonic",
"monotonic",
"ancient greek",
"modern greek",
"betacode",
"transliteration",
"romanization",
"conversion",
"humanities",
"classics",
"ALA-LC",
"BNF",
"ISO",
"SBL",
"TLG"
],
"homepage": "https://github.com/antoineboquet/greek-conversion#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antoineboquet/greek-conversion.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/greekConversion.min.js",
"require": "./dist/greekConversion.min.cjs",
"types": "./dist/greekConversion.d.ts"
}
},
"source": "./src/index.ts",
"types": "./dist/greekConversion.d.ts",
"main": "./dist/greekConversion.min.js",
"commonjs": "./dist/greekConversion.min.cjs",
"targets": {
"main": {
"context": "browser",
"isLibrary": true,
"optimize": true,
"outputFormat": "esmodule"
},
"commonjs": {
"context": "node",
"isLibrary": true,
"optimize": true,
"outputFormat": "commonjs"
}
},
"browserslist": "defaults",
"engines": {
"node": ">= 18"
},
"files": [
"/dist"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"\\.[jt]sx?$": [
"ts-jest",
{
"isolatedModules": true
}
]
}
},
"scripts": {
"build": "parcel build",
"prepare": "npm run build",
"test": "jest",
"test-coverage": "jest --coverage"
},
"devDependencies": {
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"parcel": "^2.11.0",
"ts-jest": "^29.1.2"
}
}