-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 842 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
39
40
41
{
"name": "gerador-nome",
"version": "0.0.5",
"description": "Gerador brasileiro de Nomes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "bukinoshita/gerador-nome",
"author": "bukinoshita <[email protected]>",
"license": "MIT",
"keywords": [
"gerador",
"brasileiro",
"nome",
"masculino",
"feminino",
"brasil",
"dados"
],
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublish": "yarn build",
"test": "jest --config=jest.config.json"
},
"dependencies": {
"unique-random-array": "2.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "0.7.0",
"@types/jest": "26.0.20",
"@types/node": "13.13.41",
"jest": "26.6.3",
"ts-jest": "26.5.1",
"typescript": "4.1.5"
}
}