-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "eslint-plugin-backpack",
"version": "5.0.0",
"description": "ESlint configuration for awesome Backpack development.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Backpack Design System <backpack@skyscanner.net>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:Skyscanner/eslint-plugin-backpack.git"
},
"engines": {
"node": ">=16.13.0",
"npm": ">=8.1.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npx ensure-node-env@2.0.0",
"test": "mocha --recursive \"src/**/*.test.js\"",
"lint:js:fix": "eslint . --ext js,jsx --fix",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx}\""
},
"license": "Apache-2.0",
"dependencies": {
"@skyscanner/bpk-foundations-web": "^19.0.0",
"lodash": "^4.17.21",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.25.9",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.4.0",
"prettier": "^3.3.2"
}
}