-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.21 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "create-empty-package",
"version": "1.0.4",
"description": "Simple script to create a new, empty node package. Similar to `poetry new <name>`.",
"author": "Andrew Meyer",
"license": "MIT",
"main": "bin/index.js",
"bin": "bin/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rewdy/create-empty-package"
},
"homepage": "https://github.com/rewdy/create-empty-package#readme",
"keywords": [
"starter",
"empty"
],
"scripts": {
"build": "node ./esbuild.config.js",
"commit": "git-cz",
"format:check": "npx prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"format": "npx prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint src/. --fix",
"lint": "eslint src/.",
"preflight": "run-p typecheck format:check lint",
"prepare": "husky install",
"release": "standard-version",
"start": "node ./esbuild.config.js --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"@digitalroute/cz-conventional-changelog-for-jira": "^7.4.2",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^18.11.9",
"@types/validate-npm-package-name": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"commitizen": "^4.2.5",
"commitlint": "^17.3.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.15.15",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"standard-version": "^9.5.0",
"typescript": "^4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}