-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 847 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
38
39
40
41
42
43
44
45
{
"name": "freebox",
"version": "2.0.0",
"description": "Simple authentification and secure requests to your Freebox OS server",
"license": "MIT",
"repository": "github:matschik/freebox",
"author": {
"name": "Mathieu Schimmerling",
"email": "mathieu.schimmerling@protonmail.com"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test": "vitest run && xo",
"lint": "xo",
"lint:fix": "xo --fix"
},
"keywords": [
"freebox",
"nodejs",
"sdk",
"freeboxos"
],
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"vitest": "^0.33.0",
"xo": "^0.55.0"
},
"xo": {
"prettier": true,
"rules": {
"camelcase": 0
}
}
}