-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 2.68 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "generator-codibly-ts",
"version": "0.0.0-semantic-release",
"description": "Generator for TypeScript projects",
"keywords": [
"boilerplate",
"library",
"typescript",
"yeoman-generator"
],
"homepage": "https://github.com/codibly/generator-ts",
"repository": "git@github.com:codibly/generator-ts.git",
"license": "MIT",
"author": {
"name": "Piotr Oleś",
"email": "piotr.oles@codibly.com"
},
"files": [
"lib/generator"
],
"scripts": {
"build": "tsc",
"precommit": "lint-staged && yarn build && yarn test",
"commit": "yarn exec git-cz",
"format": "prettier --write \"src/**/*\"",
"lint": "tslint --project tsconfig.ci.json",
"test": "jest",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"linters": {
"*.json": [
"prettier --write",
"git add"
],
"*.{js,yml,json,md,html}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"tslint --fix --project tsconfig.ci.json",
"prettier --write",
"git add"
]
},
"ignore": [
"generators/**/templates/**/*"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.ts"
]
},
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
}
]
},
"dependencies": {
"chalk": "^2.1.0",
"fs-extra": "^7.0.1",
"node-emoji": "^1.10.0",
"sort-package-json": "^1.22.1",
"tslib": "^1.9.3",
"yeoman-generator": "^3.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.5.0",
"@types/fs-extra": "^5.0.5",
"@types/jest": "^24.0.11",
"@types/node-emoji": "^1.8.1",
"@types/yeoman-assert": "^3.1.1",
"@types/yeoman-generator": "^3.1.1",
"@types/yeoman-test": "^2.0.2",
"commitlint": "^7.5.2",
"coveralls": "^3.0.2",
"git-cz": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-haste-map": "^24.5.0",
"jest-resolve": "^24.5.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"semantic-release": "^16.0.0-beta.18",
"ts-jest": "^24.0.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
}
}