forked from wes4m/zatca-xml-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "zatca-xml-js",
"version": "0.1.9",
"description": "An implementation of Saudi Arabia ZATCA's E-Invoicing requirements, processes, and standards.",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "tsc && node testing_lib/tests/test.js",
"example": "tsc --project tsconfig.build.json && node lib/examples/full.js",
"prepare": "npm run build"
},
"devDependencies": {
"@types/lodash": "^4.14.184",
"@types/node": "^18.7.16",
"@types/uuid": "^8.3.4",
"@types/xmldom": "^0.1.31",
"typescript": "^4.8.3"
},
"dependencies": {
"@fidm/x509": "^1.2.1",
"axios": "^0.27.2",
"fast-xml-parser": "^4.0.9",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"uuid": "^9.0.0",
"xmldom": "^0.6.0",
"xmldsigjs": "^2.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wes4m/zatca-xml-js"
},
"typings": "lib/index.d.ts",
"keywords": [
"zatca",
"xml",
"signing",
"on-boarding",
"EGS",
"invoice",
"tax",
"simplified",
"api",
"saudi-arabia",
"phase 1",
"phase 2"
],
"author": "Wesam Alzahir (https://wes4m.io/)",
"license": "MIT"
}