-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "@guidesmiths/generator-react-component",
"version": "0.1.0",
"description": "A generator for a react component",
"homepage": "https://github.com/guidesmiths/react-component",
"author": {
"name": "Guidesmiths Ltd",
"url": ""
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"react",
"component",
"scaffold",
"yeoman-generator"
],
"dependencies": {
"history": "^4.7.2",
"lodash": "^4.17.2",
"react-router-redux": "^5.0.0-alpha.9",
"yeoman-generator": "^0.23.4",
"yosay": "^1.0.0"
},
"devDependencies": {
"eslint": "^3.1.1",
"eslint-config-imperative-es6": "^1.0.0",
"semver": "^5.5.0"
},
"eslintConfig": {
"extends": "imperative-es6",
"env": {
"mocha": true
}
},
"repository": "GuideSmiths Ltd/generator-react-component",
"scripts": {
"publish-patch": "node ./bin/publish patch && npm publish",
"publish-minor": "node ./bin/publish minor && npm publish",
"publish-major": "node ./bin/publish major && npm publish"
},
"license": "ISC"
}