-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"name": "generator-react-tsx-component",
"version": "0.2.0",
"description": "Yeoman generator for React TSX components",
"main": "index.js",
"scripts": {
"test": "mocha",
"test:watch": "mocha -w",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NeverEnder4/generator-react-tsx-component.git"
},
"keywords": [
"yeoman-generator",
"react",
"tsx",
"component",
"javascript",
"builder",
"scaffold",
"generator"
],
"author": "Tony Pettigrew <get@tonypettigrew.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NeverEnder4/generator-tsx-component/issues"
},
"homepage": "https://github.com/NeverEnder4/generator-tsx-component#readme",
"dependencies": {
"mkdirp": "^1.0.4",
"xcase": "^2.0.1",
"yeoman-generator": "^5.7.0",
"yosay": "^2.0.2"
},
"files": [
"app"
],
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"path": "^0.12.7",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^6.3.0"
},
"lint-staged": {
"*.+(js|ts|tsx|css)": [
"npm run test"
]
}
}