forked from braintree/credit-card-type
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "credit-card-type",
"version": "9.0.1",
"description": "A library for determining credit card type",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext js,ts .",
"posttest": "npm run lint",
"test": "jest",
"prepublishOnly": "npm run build",
"prebuild": "prettier --write .",
"build": "tsc --declaration",
"prepare": "npm run build && npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "[email protected]:braintree/credit-card-type"
},
"homepage": "https://github.com/braintree/credit-card-type",
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.5",
"eslint": "^7.5.0",
"eslint-config-braintree": "5.0.0-typescript-prep-rc.17",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/helper.ts"
]
}
}