-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "tgtg-client",
"version": "1.0.0",
"description": "A node TooGoodToGo API wrapper",
"author": "Benjamin Bourgeois",
"license": "MIT",
"bugs": {
"url": "https://github.com/bengeois/tgtg-client/issues"
},
"homepage": "https://github.com/bengeois/tgtg-client#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"format": "prettier src --check",
"format:fix": "npm run format -- --write",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bengeois/tgtg-client.git"
},
"keywords": [
"toogoodtogo",
"api",
"wrapper",
"node",
"client"
],
"devDependencies": {
"@types/lodash": "^4.14.197",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nock": "^13.3.3",
"prettier": "^3.0.2",
"typescript": "^5.1.6",
"vitest": "^0.34.3"
},
"dependencies": {
"got": "^11.8.6",
"lodash": "^4.17.21",
"tough-cookie": "^4.1.3"
}
}