-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
52
53
{
"name": "@swivel-finance/eslint-config",
"version": "0.2.2",
"description": "ESLint config for @swivel-finance.",
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "git-cz",
"release": "standard-version --commit-all",
"release:dry": "npm run release -- --dry-run",
"release:publish": "git push --follow-tags origin main && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swivel-Finance/eslint-config.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Swivel-Finance/eslint-config/issues"
},
"homepage": "https://github.com/Swivel-Finance/eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.54.0",
"standard-version": "^9.3.0"
},
"peerDependencies": {
"eslint": "^8.54.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=15",
"npm": ">=7"
}
}