-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
65 lines (65 loc) · 1.44 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@axenda/zatca",
"version": "1.0.4",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"dependencies": {
"qrcode": "^1.4.4"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.44",
"@types/qrcode": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"nodemon": "^2.0.7",
"ts-jest": "^27.0.7",
"ts-node": "^10.7.0",
"typescript": "^4.5.2"
},
"scripts": {
"setup": "npm install",
"dev": "nodemon src/internal/internal.ts",
"build": "rm -rf lib && tsc",
"start": "node lib/index.js",
"test": "jest",
"lint": "eslint src",
"format": "eslint src --fix",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"publish": "npm publish --access public"
},
"homepage": "https://github.com/axenda/zatca#readme",
"repository": {
"type": "git",
"url": "https://github.com/axenda/zatca"
},
"bugs": {
"url": "git+https://github.com/axenda/zatca/issues"
},
"keywords": [
"zatca",
"e-invoicing",
"qr-code",
"generation",
"axenda",
"typescript",
"saudi-arabia",
"fatoora"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Hadi Albinsaad",
"license": "MIT"
}