-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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
{
"name": "node-overwatch-league",
"version": "1.0.0",
"description": "A Node wrapper for the Overwatch League API.",
"homepage": "https://github.com/yeah568/node-overwatch-league",
"author": {
"name": "James Liu",
"email": "james@jamesliu.ca",
"url": "jamesliu.ca"
},
"files": [
"lib"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"overwatch"
],
"devDependencies": {
"@types/node-fetch": "^2.3.2",
"husky": "^0.14.3",
"jest": "^24.7.1",
"typescript": "^3.4.4",
"gts": "^0.9.0"
},
"scripts": {
"prepare": "npm run compile",
"precommit": "npm run compile",
"test": "jest",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"repository": "https://github.com/yeah568/node-overwatch-league.git",
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"dependencies": {
"node-fetch": "^2.1.1",
"whatwg-url": "^6.4.0"
}
}