This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "@inpyjamas/generator-defaults",
"version": "0.6.0",
"description": "my personal opinionated generator for typescript eslint prettier express jest nodemon husky",
"scripts": {
"test": "jest --watch",
"test:ci": "jest --collect-coverage",
"build": "tsc -p .",
"dev": "tsc -p . --watch",
"prepare": "npm run build",
"lint-staged": "lint-staged"
},
"keywords": [
"yeoman-generator"
],
"files": [
"generators"
],
"author": "Fabian Morón Zirfas",
"license": "MIT",
"dependencies": {
"glob": "7.1.6",
"yeoman-generator": "^4.10.1"
},
"main": "generators/index.js",
"devDependencies": {
"@inpyjamas/scripts": "0.1.0-alpha",
"@types/jest": "26.0.0",
"@types/node": "12.12.45",
"@types/rimraf": "3.0.0",
"@types/yeoman-assert": "3.1.1",
"@types/yeoman-generator": "4.11.1",
"@types/yeoman-test": "4.0.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.2.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-jest": "24.0.0",
"jest": "26.0.1",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-jest": "26.1.0",
"typescript": "4.0.2",
"yeoman-test": "5.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/@inpyjamas/generator-defaults.git"
},
"bugs": {
"url": "https://github.com/@inpyjamas/generator-defaults/issues"
},
"homepage": "https://github.com/@inpyjamas/generator-defaults#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}