-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@cityssm/cpa-codes",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"description": "Lookups, validations, and utility functions for Canadian Payments Association (CPA) Standard 007 transaction and return codes.",
"exports": {
".": "./index.js",
"./index": "./index.js",
"./index.js": "./index.js",
"./returns": "./cpaCodes/returns.js",
"./returns.js": "./cpaCodes/returns.js",
"./transactions": "./cpaCodes/transactions.js",
"./transactions.js": "./cpaCodes/transactions.js"
},
"scripts": {
"test": "node --test",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test"
},
"keywords": [
"cpa",
"banking",
"eft",
"aft",
"canada"
],
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"homepage": "https://github.com/cityssm/node-cpa-codes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-cpa-codes.git"
},
"bugs": {
"url": "https://github.com/cityssm/node-cpa-codes/issues"
},
"devDependencies": {
"@types/node": "^22.8.0",
"eslint-config-cityssm": "^13.2.0",
"prettier-config-cityssm": "^1.0.0"
}
}