-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 935 Bytes
/
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": "fractuyo",
"version": "0.1.0",
"description": "Invoice generator.",
"main": "src/fractuyo.js",
"type": "module",
"exports": {
".": "./src/fractuyo.js"
},
"scripts": {
"test": "ava --serial",
"test:invoice": "ava ./tests/invoice.*",
"test:despatch": "ava ./tests/despatch.*",
"test:credit": "ava ./tests/credit.*",
"test:debit": "ava ./tests/debit.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terexor/fractuyo.git"
},
"keywords": [
"invoice",
"receipt",
"taxpayer",
"sunat"
],
"author": "Terexor",
"license": "ISC",
"bugs": {
"url": "https://github.com/terexor/fractuyo/issues"
},
"homepage": "https://github.com/terexor/fractuyo#readme",
"dependencies": {
"@xmldom/xmldom": "^0.9.5",
"asn1js": "^3.0.5",
"jszip": "^3.10.1",
"written-number": "^0.11.1",
"xmldsigjs": "^2.6.1"
},
"devDependencies": {
"ava": "^6.1.3",
"jsdom": "^25.0.0"
}
}