-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 907 Bytes
/
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
{
"name": "arena-typed",
"version": "1.0.4",
"description": "Unofficial are.na API wrapper for TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json --watchAll",
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"arena",
"are.na",
"arena wrapper",
"arena typescript",
"arena ts"
],
"author": "Pouria Delfanazari",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0"
}
}