-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.08 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": "korean-regexp",
"version": "1.0.13",
"author": {
"name": "Sung Won Cha",
"email": "[email protected]"
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bluewings/korean-regexp.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"rollup": "^2.39.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^26.4.4",
"typescript": "^4.9.4"
},
"scripts": {
"prestart": "rm -rf dist/*",
"start": "rollup -c --watch",
"prebuild": "rm -rf dist/*",
"build": "rollup -c",
"test": "jest --verbose",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"files": [
"dist",
"README.md"
],
"license": "MIT",
"keywords": [
"korean",
"hangul"
]
}