-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 928 Bytes
/
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
{
"name": "react-generate-template",
"version": "0.1.1",
"description":
"Generate simple templates for react project, like create-react-app does",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"postinstall": "ln -fsn ../src 'node_modules/>'",
"test": "jest --colors",
"prettier": "prettier --write \"src/**\""
},
"dependencies": {
"chalk": "^2.3.0",
"handlebars": "^4.0.11",
"readline-sync": "^1.4.7",
"rimraf": "^2.6.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"jest": "^22.1.4",
"prettier": "^1.9.2"
},
"jest": {
"moduleFileExtensions": ["js", "jsx", "json"]
},
"bin": {
"react-generate-template": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/talgat-ruby/react-generate-template"
},
"author": "Talgat Saribayev",
"license": "MIT",
"keywords": ["react", "template"]
}