-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 846 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 846 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
{
"name": "src-ts",
"version": "2.10.0",
"description": "A TypeScript library with type definitions for the speedrun.com REST API, with some common utility functions.",
"type": "commonjs",
"scripts": {
"build": "rimraf ./lib && tsc",
"build:pack": "npm run build && npm pack",
"deploy": "npm run build && npm publish",
"test": "jest"
},
"main": "./lib/index.js",
"files": [
"/lib"
],
"keywords": [
"speedrun.com"
],
"author": "Mitchell Merry <mitchellmerry145@gmail.com>",
"license": "MIT",
"dependencies": {
"bottleneck": "^2.19.5",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.2",
"jest": "^29.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
}
}