-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "brasilapi-js",
"version": "1.0.1",
"description": "biblioteca em js para acessar Brasil Api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "npm run check && npm run lint && tsc",
"test": "jest",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"check": "prettier --ignore-path .gitignore -c \"**/*.+(js|ts|json)\"",
"lint": "eslint .",
"prepare": "husky"
},
"author": "Willian Carlos Agostini",
"license": "MIT",
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@swc/core": "^1.4.8",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"bugs": {
"url": "https://github.com/WillianAgostini/brasilapi-js/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/WillianAgostini/brasilapi-js.git"
}
}