forked from Lierrmm/Node-CallOfDuty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.78 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
71
72
73
74
75
76
77
78
79
{
"name": "@diegofigs/call-of-duty",
"version": "0.1.0",
"description": "Type safe wrapper for the private Call Of Duty API. Drop-in replacement to https://www.npmjs.com/package/call-of-duty-api.",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest",
"docs": "typedoc src/index.ts"
},
"homepage": "https://diegofigs.github.io/call-of-duty",
"repository": {
"type": "git",
"url": "git+https://github.com/diegofigs/call-of-duty.git"
},
"keywords": [
"call-of-duty",
"call of duty",
"warzone",
"modern warfare",
"black ops",
"battle royale",
"cold war",
"vanguard",
"Treyarch",
"Infinity Ward",
"Sledgehammer",
"Raven"
],
"bugs": {
"url": "https://github.com/diegofigs/call-of-duty/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/diegofigs"
},
"author": "Diego Figueroa",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^17.0.45",
"@types/superagent": "^4.1.15",
"jest": "^28.1.3",
"microbundle": "^0.15.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.7",
"typedoc": "^0.23.9",
"typescript": "^4.7.3"
},
"dependencies": {
"superagent": "^8.0.0",
"tslib": "^2.4.0"
},
"release": {
"branches": [
"main",
"next"
]
},
"publishConfig": {
"access": "public"
}
}