forked from foliojs/unicode-properties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "unicode-properties",
"version": "1.3.1",
"description": "Provides fast access to unicode character properties",
"main": "./unicode-properties.cjs.js",
"module": "./unicode-properties.es.js",
"browser": {
"./unicode-properties.es.js": "./unicode-properties.browser.es.js",
"./unicode-properties.cjs.js": "./unicode-properties.browser.cjs.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"base64-js": "^1.3.0",
"unicode-trie": "github:propellerfactory/unicode-trie"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"codepoints": "^1.3.0",
"mocha": "^5.2.0",
"rollup": "^1.5.0",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-json": "^4.0.0"
},
"scripts": {
"test": "npm run build && mocha",
"build": "node ./generate.js && rollup -c",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/devongovett/unicode-properties.git"
},
"keywords": [
"unicode",
"metadata",
"character",
"codepoint"
],
"files": [
"data.json",
"data.trie",
"unicode-properties.es.js",
"unicode-properties.es.js.map",
"unicode-properties.cjs.js",
"unicode-properties.cjs.js.map",
"unicode-properties.browser.es.js",
"unicode-properties.browser.es.js.map",
"unicode-properties.browser.cjs.js",
"unicode-properties.browser.cjs.js.map"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/unicode-properties/issues"
},
"homepage": "https://github.com/devongovett/unicode-properties"
}