forked from eddieantonio/unicode-default-word-boundary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "unicode-default-word-boundary",
"version": "15.1.0",
"description": "Implements the Unicode default word boundary specification (UAX #29 §4.1)",
"main": "lib/index.js",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"test": "tsc && ava --verbose --timeout 5m",
"test-performance": "tsc && ava --verbose --timeout 5m --config ava-performance.config.cjs",
"ava": "ava --verbose --timeout 5m",
"build": "node ./libexec/compile-word-break.js && tsc",
"prepare": "npm run build",
"prepack": "./libexec/strip-debug-from-src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eddieantonio/unicode-default-word-boundary.git"
},
"keywords": [
"unicode",
"word",
"boundary",
"default"
],
"author": "Eddie Antonio Santos <Eddie.Santos@nrc-cnrc.gc.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eddieantonio/unicode-default-word-boundary/issues"
},
"homepage": "https://github.com/eddieantonio/unicode-default-word-boundary#readme",
"devDependencies": {
"ava": "^3.4.1",
"ava-fast-check": "^1.1.1",
"fast-check": "^1.15.0",
"strip-debug-cli": "^2.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}