-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "ballchasing",
"description": "Provides a wrapper around the ballchasing.com API",
"version": "0.0.7",
"author": "devnoot <[email protected]>",
"main": "dist/ballchasing.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/devnoot/ballchasing"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/dotenv": "^8.2.0",
"@types/form-data": "^2.5.0",
"@types/mocha": "^8.2.2",
"@types/node-fetch": "^2.5.8",
"bottleneck": "^2.19.5",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"microbundle": "^0.13.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"build": "microbundle -i src/index.ts -o dist/ballchasing.js --no-pkg-main --target node",
"start": "node dist/index.js",
"prestart": "yarn build",
"test": "mocha --timeout 15000",
"docs": "typedoc --out docs src/index.ts",
"deploy:docs": "gh-pages -d docs"
},
"dependencies": {
"form-data": "^3.0.1",
"gh-pages": "^3.1.0",
"node-fetch": "^2.6.1",
"typedoc": "^0.20.35"
},
"files": [
"dist/"
],
"keywords": [
"ballchasing",
"rocket league",
"rocket league api",
"ballchasing api",
"replays"
],
"bugs": {
"url": "https://github.com/devnoot/ballchasing/issues",
"email": "[email protected]"
},
"license": "See LICENSE.md"
}