-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 820 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 820 Bytes
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
{
"name": "@xboxreplay/xboxlive-api",
"description": "Simple Xbox Live API wrapper.",
"version": "3.4.3",
"keywords": [
"xboxreplay",
"xboxlive",
"api"
],
"license": "MIT",
"author": {
"name": "Alexis Bize",
"email": "alexis.bize@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/XboxReplay/xboxlive-api"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc && rm -rf ./dist/__tests__",
"clean": "rm -rf ./dist",
"prepublishOnly": "npm run test && npm run build",
"test": "ts-node ./__tests__/e2e.test.js"
},
"dependencies": {
"@xboxreplay/errors": "^0.1.0",
"axios": "^0.21.1"
},
"devDependencies": {
"@types/node": "^13.11.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}