-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "rewe-ebon-parser",
"version": "0.4.0",
"description": "A parser for REWE eBons",
"keywords": [
"rewe",
"ebon",
"payback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node ./dist/index.js",
"build": "./node_modules/.bin/tsc",
"watch": "./node_modules/.bin/tsc -w",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webd97/rewe-ebon-parser.git"
},
"author": "Christian Danscheid",
"license": "MIT",
"bugs": {
"url": "https://github.com/webd97/rewe-ebon-parser/issues"
},
"homepage": "https://github.com/webd97/rewe-ebon-parser#readme",
"dependencies": {
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^18.0.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.0"
}
}