-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.75 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
54
55
56
57
58
59
60
61
62
{
"name": "template-javascript",
"version": "1.0.0",
"description": "Template for JavaScript project",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nikolay-borzov/template-javascript.git"
},
"bugs": {
"url": "https://github.com/nikolay-borzov/template-javascript/issues"
},
"homepage": "https://github.com/nikolay-borzov/template-javascript#readme",
"keywords": [
"template-repository"
],
"author": {
"name": "Nikolay Borzov",
"email": "[email protected]"
},
"type": "module",
"exports": "./src/index.js",
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"scripts": {
"test": "ava",
"test:watch": "ava --watch",
"test:update-snapshots": "ava --update-snapshots",
"test:coverage:collect": "c8 ava",
"test:coverage:view": "npx open-cli coverage\\lcov-report\\index.html",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@stylistic/eslint-plugin": "^1.5.1",
"@stylistic/eslint-plugin-migrate": "^1.5.1",
"ava": "^6.0.1",
"c8": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"open-cli": "^7.2.0",
"prettier": "3.1.1",
"prettier-config-standard": "^7.0.0"
}
}