-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 850 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
{
"name": "picnic-api",
"version": "3.1.2",
"description": "Unofficial wrapper for the API of the online supermarket Picnic",
"keywords": [
"picnic",
"api",
"wrapper",
"online",
"supermarket"
],
"homepage": "https://github.com/MRVDH/picnic-api",
"bugs": {
"url": "https://github.com/MRVDH/picnic-api/issues"
},
"license": "MIT",
"author": "Maarten van den Hoven <[email protected]> (https://maartenvandenhoven.com)",
"files": [
"lib/**"
],
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": "github:MRVDH/picnic-api",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}