-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 947 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": "full-name-generator",
"version": "0.1.4",
"description": "Generate random names using data from popular names and surnames of various countries.",
"keywords": [
"random",
"name",
"surname",
"first name",
"last name",
"full name",
"name generator"
],
"homepage": "https://fullnamegenerator.com",
"author": "Burak Özdemir",
"license": "MIT",
"bugs": {
"url": "https://github.com/ozdemirburak/full-name-generator/issues"
},
"main": "./src/index.js",
"files": ["LICENSE", "README.md", "src"],
"repository": {
"type": "git",
"url": "git+https://github.com/ozdemirburak/full-name-generator.git"
},
"scripts": {
"build": "rollup -c",
"test": "mocha"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"mocha": "10.2.0",
"rollup": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}