-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
46 lines (46 loc) · 1018 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
45
46
{
"author": "Philipp Kewisch",
"name": "sepa",
"description": "Create SEPA XML for business transactions",
"license": "MPL-2.0",
"main": "lib/sepa.js",
"version": "2.0.0",
"repository": {
"url": "https://github.com/kewisch/sepa.js"
},
"directories": {
"example": "examples"
},
"files": [
"README.md",
"lib/sepa.js",
"lib/sepa.min.js"
],
"pre-commit": [
"lint"
],
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"build": "uglifyjs -m reserved=['exports','require'] -o lib/sepa.min.js lib/sepa.js",
"test": "jest"
},
"dependencies": {
"@xmldom/xmldom": "*"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@stylistic/eslint-plugin": "^2.3.0",
"eslint": "^9.7.0",
"eslint-plugin-jest": "^28.6.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"pre-commit": "*",
"uglify-js": "^3.18.0",
"xpath": "^0.0.34",
"xsd-validator": "^1.1.1"
},
"engines": {
"node": "*"
},
"types": "lib/index.d.ts"
}