-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.13 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "birthpec",
"version": "0.2.0",
"description": "Create spec file template with ejs on CLI",
"keywords": [
"cli",
"template",
"boilerplate",
"generator",
"ejs",
"test",
"js",
"jsx",
"ts",
"tsx"
],
"homepage": "https://github.com/tyankatsu0105/birthpec#readme",
"bugs": {
"url": "https://github.com/tyankatsu0105/birthpec/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyankatsu0105/birthpec.git"
},
"license": "MIT",
"author": "tyankatsu <[email protected]> (https://tyankatsu.netlify.com/)",
"main": "dist/cli/index.js",
"bin": {
"birthpec": "dist/bin/birthpec.js"
},
"files": [
"dist"
],
"scripts": {
"build": "sh scripts/build",
"precommit": "lint-staged",
"commit": "git-cz",
"dev": "tsc -w",
"release": "shipjs prepare",
"sandbox": "sh scripts/sandbox",
"test": "jest",
"typecheck": "tsc --project ./tsconfig.build.json --noEmit"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{md,yml}": [
"prettier --write"
],
"package.json": [
"npx sort-package-json"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@typescript-eslint/parser": "^2.32.0",
"@typescript-eslint/typescript-estree": "^2.32.0",
"boxen": "^4.2.0",
"change-case": "^4.1.1",
"commander": "^5.1.0",
"cosmiconfig": "^6.0.0",
"ejs": "^3.1.2",
"enquirer": "^2.3.5",
"eslint": "^7.0.0",
"front-matter": "^3.2.0",
"fs-extra": "^9.0.0",
"json-schema": "^0.2.5",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/ejs": "^3.0.3",
"@types/eslint": "^6.8.0",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"shipjs": "0.21.0",
"ts-jest": "^25.5.1"
}
}