This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
70 lines (70 loc) · 1.8 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "r6api.js",
"version": "4.4.1",
"description": "Node.js wrapper around Rainbow Six: Siege API.",
"author": "Daniel Sandberg",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist",
"module": "./index.mjs",
"exports": {
"import": "./index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"build": "rimraf dist && tsc",
"build:prepare": "path-exists ./dist || npm run build",
"example": "yarn build && ts-node --project scripts/tsconfig.json scripts/example",
"methods": "ts-node scripts/methods",
"tables": "ts-node scripts/tables",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npm run build:prepare"
},
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@danielwerg/tsconfig": "^0.0.0",
"@types/markdown-table": "^2.0.0",
"@types/minimist": "^1.2.2",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.6.2",
"@types/stringify-object": "^3.3.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"markdown-table": "2.0.0",
"minimist": "^1.2.7",
"path-exists-cli": "^2.0.0",
"rimraf": "^3.0.2",
"stringify-object": "^3.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"dist",
"index.mjs",
"docs",
"examples"
],
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"api",
"wrapper",
"ubisoft",
"rainbow6",
"siege",
"r6s"
],
"bugs": {
"url": "https://github.com/danielwerg/r6api.js/issues"
},
"homepage": "https://github.com/danielwerg/r6api.js#readme",
"runkitExampleFilename": "./examples/runkit.js"
}