-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.66 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
66
67
68
69
70
71
{
"name": "afip.ts",
"version": "3.2.2",
"description": "Afip typescript SDK",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"postbuild": "rimraf lib/soap/wsdl && copyfiles -u 2 src/soap/wsdl/* lib/soap/",
"test": "jest",
"doc": "typedoc --theme oxide --name 'afip.ts' --out docs src/index.ts",
"wsdl-gen": "wsdl-to-ts --",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "valiuLab",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.6.2",
"@types/jest": "^29.5.1",
"@types/node-forge": "^1.3.2",
"@types/underscore": "^1.11.5",
"@types/xml2js": "^0.4.11",
"copyfiles": "^2.4.1",
"jest": "^28.1.3",
"rimraf": "^5.0.7",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitepress": "1.2.3",
"wsdl-to-ts": "^0.2.3",
"wsdl-tsclient": "^1.4.0"
},
"dependencies": {
"dotenv": "^16.3.1",
"moment": "^2.29.4",
"node-forge": "^1.3.1",
"soap": "^1.0.0",
"winston": "^3.10.0",
"xml2js": "^0.6.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ralcorta/afip.ts.git"
},
"bugs": {
"url": "https://github.com/ralcorta/afip.ts/issues"
},
"homepage": "https://github.com/ralcorta/afip.ts#readme",
"files": [
"lib/**/*"
],
"keywords": [
"web-service",
"factura-electronica",
"padron",
"afip",
"sdk",
"package",
"api",
"soap",
"rest",
"endpoint",
"wsaa"
]
}