-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
57 lines (57 loc) · 1.2 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
{
"name": "linebreak",
"version": "1.1.0",
"description": "An implementation of the Unicode Line Breaking Algorithm (UAX #14)",
"source": "src/linebreaker.js",
"type": "module",
"main": "dist/main.cjs",
"module": "dist/module.mjs",
"exports": {
"import": "./dist/module.mjs",
"require": "./dist/main.cjs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/devongovett/linebreaker.git"
},
"keywords": [
"unicode",
"text",
"wrapping"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/linebreaker/issues"
},
"homepage": "https://github.com/devongovett/linebreaker",
"dependencies": {
"base64-js": "0.0.8",
"unicode-trie": "^2.0.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"parcel": "^2.5.0",
"request": "^2.88.0"
},
"scripts": {
"test": "parcel build && mocha --reporter landing",
"build": "parcel build",
"prepublishOnly": "parcel build"
},
"targets": {
"main": {
"includeNodeModules": [
"fs"
]
},
"module": {
"includeNodeModules": [
"fs"
]
}
}
}