-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 927 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
42
{
"name": "name-battle",
"version": "1.0.1",
"description": ":name_badge: Simulate battles in a parallel universe",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/msrose/name-battle.git"
},
"keywords": [
"name",
"battle"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/msrose/name-battle/issues"
},
"homepage": "https://github.com/msrose/name-battle#readme",
"devDependencies": {
"@tophat/eslint-config": "^0.6.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^25.4.0",
"prettier": "^2.0.4"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
}
}