-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 898 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
{
"name": "random-fruits-name",
"version": "1.10.1",
"description": "Generate the names of random fruits.",
"main": "main.js",
"scripts": {
"test": "jest",
"fmt": "prettier --write '**/*.{js,json}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shinshin86/random-fruits-name.js.git"
},
"keywords": [
"generator",
"string-generator",
"random-generator",
"random-fruits",
"random-fruits-name"
],
"author": "shinshin86 <[email protected]> (https://github.com/shinshin86)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shinshin86/random-fruits-name.js/issues"
},
"homepage": "https://github.com/shinshin86/random-fruits-name.js#readme",
"devDependencies": {
"jest": "^29.7.0",
"prettier": "^3.0.3"
},
"prettier": {
"singleQuote": true,
"semi": false,
"tabWidth": 2
}
}