-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 KB
/
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": "bitwalk",
"version": "0.0.1",
"description": "Walkthrough of Bitburner",
"main": "index.js",
"scripts": {
"clean": "bash pull.sh && prettier --write . && eslint --fix --ext js --max-warnings 0 .",
"format": "prettier --write .",
"lint": "eslint --fix --ext js --max-warnings 0 .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quacksouls/bitwalk.git"
},
"keywords": [
"JavaScript",
"Bitburner",
"game"
],
"author": "Duck McSouls",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/quacksouls/bitwalk/issues"
},
"homepage": "https://github.com/quacksouls/bitwalk#readme",
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdownlint": "^0.4.1",
"eslint-plugin-prettier": "^4.2.1",
"markdownlint": "^0.28.2",
"prettier": "^2.8.8"
}
}