-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "base-javascript-project-boilerplate",
"version": "1.0.4",
"description": "Base JavaScript Project Boilerplate",
"main": "index.js",
"scripts": {
"release": "standard-version",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ridakk/base-javascript-project-boilerplate.git"
},
"keywords": [
"javascript",
"boilerplate",
"eslint",
"commitlint",
"husky",
"standard-version"
],
"author": "Kadir Goktas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ridakk/base-javascript-project-boilerplate/issues"
},
"homepage": "https://github.com/ridakk/base-javascript-project-boilerplate#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.18.0",
"eslint-config-bundle": "^1.0.5",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.8",
"standard-version": "^9.1.0"
}
}