-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.23 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
45
46
47
48
49
50
51
{
"name": "eslint-config-braintree",
"version": "6.0.0",
"description": "Braintree's ESLint configuration",
"files": [
"dist/",
"*.js"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "prettier --write .",
"build": "tsc --declaration",
"prelint": "npm run build",
"lint": "eslint --ext .js,.ts .",
"posttest": "npm run lint",
"test": "jest"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/braintree/eslint-config.git"
},
"peerDependencies": {
"eslint": "^8.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"eslint": "^8.47.0",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/braintree/eslint-config/issues"
},
"homepage": "https://github.com/braintree/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0"
},
"author": "",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}