-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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": "korean-random-words",
"version": "1.0.3",
"description": "A simple, lightweight random word string generator in Korean",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha dist/index.test.js",
"build": "babel src -d dist",
"lint": "npx eslint src/* --ext .js",
"pretty": "npx eslint --fix src/* --ext .js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuAn-Kang/korean-random-words.git"
},
"keywords": [
"korean",
"random",
"words",
"word-string",
"generator",
"text",
"slug"
],
"author": "Ju An Kang",
"license": "Apache-2.0",
"funding": [
{
"type": "kakaopay-mobile",
"url": "https://qr.kakaopay.com/281006011000066782745246"
},
{
"type": "buy me a coffee",
"url": "https://www.buymeacoffee.com/doubtfulmr"
}
],
"bugs": {
"url": "https://github.com/JuAn-Kang/korean-random-words/issues"
},
"homepage": "https://github.com/JuAn-Kang/korean-random-words#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"mocha": "^8.3.2",
"request": "^2.88.2"
}
}