forked from XboxReplay/xboxlive-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.42 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
57
58
{
"name": "@xboxreplay/xboxlive-api",
"description": "Simple Xbox Live API wrapper.",
"version": "0.1.1",
"keywords": [
"xboxreplay",
"xboxlive",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/XboxReplay/xboxlive-api"
},
"license": "MIT",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"author": {
"name": "Alexis Bize",
"email": "[email protected]"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean; tsc",
"watch": "npm run clean; tsc-watch",
"clean": "rm -rf ./dist",
"test": "jest --runInBand"
},
"dependencies": {
"@types/request": "^2.48.1",
"http-status-codes": "^1.3.0",
"superagent": "^4.1.0"
},
"peerDependencies": {
"@xboxreplay/xboxlive-auth": "^0.2.1"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^10.12.18",
"tsc-watch": "^1.1.35",
"typescript": "^3.2.4",
"jest": "^24.1.0",
"ts-jest": "^23.10.5"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "__tests__/.*\\.(ts|tsx|js)$"
}
}