This repository has been archived by the owner on Jul 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.09 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
62
63
64
65
66
67
68
{
"name": "hangul-unicode",
"version": "0.0.3",
"description": " A library to process and standardize hangul characters across unicode blocks",
"main": "dist/Hangul.cjs.min.js",
"files": [
"Hangul.cjs.min.js"
],
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "jest --no-cache",
"test:integration": "jest src/main.t.js"
},
"author": "Cole Gannon",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-minify": "^0.4.3",
"babel-preset-minify": "^0.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.27.2",
"flow-bin": "^0.81.0",
"jest": "^23.6.0",
"object-assign": "^4.1.1",
"regenerator-runtime": "^0.12.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-terser": "^1.0.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/Coalpha/Hangul-Unicode.git"
},
"keywords": [
"hangul",
"unicode",
"unicode-support",
"unicode-normalization",
"unicode-characters",
"korean",
"korean-text-processing"
],
"bugs": {
"url": "https://github.com/Coalpha/Hangul-Unicode/issues"
},
"homepage": "https://github.com/Coalpha/Hangul-Unicode#readme"
}