-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 736 Bytes
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
{
"name": "generator-typescript-react",
"version": "0.1.1",
"description": "An opinionated Yeoman Generator for a Typescript + React ready build system",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:nomcopter/generator-typescript-react.git"
},
"scripts": {
"build": "tsc",
"clean": "rm -f generators/app/index.js",
"test": "npm-run-all clean build"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator"
],
"dependencies": {
"@types/yeoman-generator": "^1.0.4",
"yeoman-generator": "^1.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.77",
"lodash": "^4.17.4",
"npm-run-all": "^4.1.1",
"typescript": "^2.5.3"
}
}