-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"version": "1.0.0",
"description": "package for creating workers templates",
"main": "index.js",
"scripts": {
"test": "echo \"There are no tests so far!\"",
"format": "prettier --write '**/*.{js,css,json,md}'",
"lint:js": "eslint \"**/*.{js,jsx,}\"",
"lint:markdown": "markdownlint *.md",
"lint:grammar": "write-good *.md --no-passive",
"lint:spellcheck": "mdspell *.md --ignore-numbers --report",
"lint": "run-p lint:*",
"audit-security": "audit-ci --config ./audit-ci.json"
},
"author": "{{ authors }}",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"audit-ci": "^2.5.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"markdown-spellcheck": "^1.3.1",
"markdownlint-cli": "^0.22.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"write-good": "^1.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}