-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.35 KB
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
{
"author": "Philipp Kewisch",
"name": "sepa",
"description": "Create SEPA XML for business transactions",
"license": "MPL-2.0",
"main": "dist/sepa.es5.cjs",
"module": "dist/sepa.js",
"version": "3.0.0",
"type": "module",
"types": "dist/types/sepa.d.ts",
"repository": {
"url": "https://github.com/kewisch/sepa.js"
},
"directories": {
"example": "examples"
},
"files": [
"README.md",
"dist/sepa.js",
"dist/sepa.min.js",
"dist/sepa.es5.cjs",
"dist/sepa.es5.min.cjs",
"dist/types/sepa.d.ts"
],
"exports": {
".": {
"import": "./dist/sepa.js",
"require": "./dist/sepa.es5.cjs",
"types": "./dist/types/sepa.d.ts"
}
},
"pre-commit": [
"lint"
],
"scripts": {
"lint": "eslint",
"build": "rollup -c",
"prepare": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fastify/pre-commit": "^2.2.1",
"@rollup/plugin-terser": "^1.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@xmldom/xmldom": "^0.9.8",
"eslint": "^10.0.3",
"eslint-plugin-jest": "^29.15.0",
"globals": "^17.4.0",
"jest": "^30.2.0",
"libxml2-wasm": "^0.7.0",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"xpath": "^0.0.34"
},
"engines": {
"node": "*"
}
}