-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1018 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
{
"name": "battleship",
"version": "1.0.0",
"description": "Classic battleship game written in Vanilla JS using the TDD approach",
"private": "true",
"scripts": {
"test": "jest",
"watch": "jest --watch *.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/01zulfi/battleship.git"
},
"author": "xari",
"license": "MIT",
"bugs": {
"url": "https://github.com/01zulfi/battleship/issues"
},
"homepage": "https://github.com/01zulfi/battleship#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.2",
"css-loader": "^6.4.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.4.0",
"jest": "^27.3.0",
"style-loader": "^3.3.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1"
}
}