-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "f1.ts",
"version": "2.0.1",
"type": "commonjs",
"description": "Formula 1 API client, designed with TypeScript compatibility in mind",
"homepage": "f1.js.org",
"main": "dist",
"typings": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/marinofranz/f1.ts.git"
},
"scripts": {
"prepublishOnly": "npm run build && npm run test && npm run docs:deploy",
"build": "tsc",
"test": "jest",
"docs:build": "cd docs && npm run build",
"docs:deploy": "cd docs && cross-env GIT_USER=marinofranz npm run deploy"
},
"keywords": [
"f1.js",
"f1",
"formulaone",
"formula-one",
"f1-api"
],
"author": {
"email": "me@marino.codes",
"name": "Marino Franz",
"url": "https://marino.codes"
},
"license": "MIT",
"dependencies": {
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}