-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "cox-postposition",
"version": "1.4.1",
"description": "한글, 영문, 숫자에 대한 한글 조사를 처리하는 Javascript Library 입니다.",
"main": "index.js",
"scripts": {
"test": "node ./test/test.js",
"pre-build": "eslint --fix src/postposition.js",
"post-build": "node ./build/post-build",
"build": "npm run pre-build && webpack && npm run post-build && npm run test"
},
"keywords": [
"postposition",
"korean",
"josa",
"조사",
"한글",
"은/는",
"이/가",
"을/를",
"과/와",
"로/으로",
"js",
"javascript",
"자바스크립트",
"cox",
"coxcore",
"ascript"
],
"author": {
"name": "Park U-yeong",
"email": "ascript0@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/coxcore/postposition.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"webpack": "^5.55.1",
"webpack-cli": "^5.1.4"
},
"typings": "./index.d.ts"
}