-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 934 Bytes
/
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
{
"name": "@thetypefounders/unicode-classifier",
"version": "1.1.0",
"description": "Classification of Unicode codepoints by Unicode categories and scripts.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"check": "prettier . --check",
"format": "prettier . --check --write",
"test": "echo",
"update": "npx tsx src/update.ts && prettier . --check --write",
"prepare": "tsc"
},
"author": "Bram Stein <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.19",
"chai": "^4.3.7",
"characterset": "^2.0.0",
"mocha": "^10.2.0",
"node-fetch": "^3.3.0",
"prettier": "^3.3.3",
"ts-loader": "^9.4.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.4.0",
"tslib": "^2.5.0",
"tsx": "^4.16.2",
"typescript": "^4.9.5"
}
}