-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "aberoth-leaderboard-tracker",
"version": "0.2.0",
"description": "Aberoth leaderboard tracking",
"bin": "bin/index.js",
"main": "bin/index.js",
"type": "module",
"scripts": {
"start": "node -r dotenv/config .",
"lint": "eslint .",
"test": "jest"
},
"eslintConfig": {
"extends": [
"standard"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"no-unused-vars": 0
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashnel3/aberoth-leaderboard-tracker.git"
},
"keywords": [
"aberoth",
"rpg"
],
"author": "ashnel3",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/ashnel3/aberoth-leaderboard-tracker/issues"
},
"homepage": "https://github.com/ashnel3/aberoth-leaderboard-tracker#readme",
"dependencies": {
"axios": "^0.26.1",
"googleapis": "^97.0.0",
"jsdom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1"
}
}