-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 969 Bytes
/
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
{
"name": "hangeul",
"version": "0.3.1",
"description": "Hangeul transliteration library",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"prepare": "babel index.js -o index.es5.js",
"test": "eslint . && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kagami/hangeul.js.git"
},
"keywords": [
"hangul",
"transliteration",
"isomorphic"
],
"author": "Kagami Hiiragi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kagami/hangeul.js/issues"
},
"homepage": "https://github.com/Kagami/hangeul.js#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^7.1.2"
}
}