-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "unicode-properties",
"version": "1.4.1",
"description": "Provides fast access to unicode character properties",
"source": "index.js",
"type": "module",
"main": "./dist/main.cjs",
"module": "./dist/module.mjs",
"exports": {
"require": "./dist/main.cjs",
"import": "./dist/module.mjs"
},
"directories": {
"test": "test"
},
"dependencies": {
"base64-js": "^1.3.0",
"unicode-trie": "^2.0.0"
},
"devDependencies": {
"codepoints": "^1.3.0",
"mocha": "^10.0.0",
"parcel": "^2.6.1"
},
"scripts": {
"test": "npm run build && mocha",
"build": "node ./generate.js && parcel build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/devongovett/unicode-properties.git"
},
"keywords": [
"unicode",
"metadata",
"character",
"codepoint"
],
"files": [
"dist"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/unicode-properties/issues"
},
"homepage": "https://github.com/devongovett/unicode-properties"
}