-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "takeaway",
"description": "Unofficial JavaScript implementation of the Takeaway.com API.",
"version": "0.4.6",
"license": "MIT",
"author": "Danielle Huisman <[email protected]> (https://github.com/DanielleHuisman)",
"contributors": [],
"repository": "github:TakeawayAPI/node-takeaway",
"keywords": [
"takeaway",
"thuisbezorgd",
"food",
"api"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE.md",
"package.json"
],
"scripts": {
"lint": "eslint ./src --ext ts",
"clean": "rimraf lib",
"build": "yarn run clean && yarn run lint && yarn run build:ts",
"build:ts": "tsc",
"test": "echo \"Test are not implemented yet.\"",
"example": "dotenv -e example/.env -- ts-node example/index.ts",
"prepublish": "yarn run build"
},
"dependencies": {
"@rgrove/parse-xml": "^4.1.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.53.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}