-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "bring-shopping",
"version": "2.0.0",
"engines": {
"node": ">=18.0.0"
},
"description": "Nodejs wrapper for the Bring! API",
"author": {
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
},
"contributors": [
{
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
}
],
"homepage": "https://github.com/foxriver76/bring-api",
"license": "MIT",
"keywords": [
"bring",
"shopping-list"
],
"devDependencies": {
"@types/node": "^18.11.8",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"typescript": "^5.7.2"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha",
"build": "tsc -b tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxriver76/node-bring-api.git"
},
"bugs": {
"url": "https://github.com/foxriver76/node-bring-api/issues"
},
"files": [
"build/",
"LICENSE"
],
"main": "build/bring.js",
"types": "build/bring.d.ts"
}