-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "us-bank-account-validator",
"version": "1.1.0",
"description": "A library for validating US Bank Account routing and account numbers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:braintree/us-bank-account-validator"
},
"homepage": "https://github.com/braintree/us-bank-account-validator",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "prettier --write .",
"build": "tsc --declaration",
"lint": "eslint --ext js,ts .",
"posttest": "npm run lint",
"test": "jest"
},
"author": "Braintree <code@getbraintree.com> (https://www.braintreepayments.com/)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-braintree": "^6.0.0-typescript-prep-rc.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^30.2.0",
"prettier": "^2.8.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"jest": {
"preset": "ts-jest"
}
}