-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.03 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
{
"name": "@cbmjs/cbm-api",
"version": "2.0.0",
"description": "An easy way to connect with the cbmjs server.",
"homepage": "https://github.com/cbmjs/cbm-api#readme",
"bugs": {
"url": "https://github.com/cbmjs/cbm-api/issues"
},
"repository": "github:cbmjs/cbm-api",
"license": "AGPL-3.0",
"author": {
"name": "Napoleon-Christos Oikonomou",
"email": "[email protected]",
"url": "https://iamnapo.me"
},
"type": "module",
"exports": "./index.js",
"scripts": {
"lint": "eslint . --cache",
"test": "npm run lint && c8 ava"
},
"eslintConfig": {
"extends": "iamnapo",
"rules": {
"import/no-unresolved": [
"error",
{
"ignore": [
"ava",
"got"
]
}
]
}
},
"ava": {
"timeout": "1m",
"verbose": true
},
"dependencies": {
"formdata-node": "^5.0.0",
"got": "^12.5.3",
"natural": "^6.1.2"
},
"devDependencies": {
"ava": "^5.1.0",
"c8": "^7.12.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-iamnapo": "^28.0.0"
},
"engines": {
"node": ">=14.8"
}
}