This repository has been archived by the owner on Jul 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "generator-react-up",
"version": "1.0.1",
"author": {
"name": "Matthew D. Shelley",
"email": "[email protected]",
"url": "http://www.visualmarvel.com"
},
"description": "A simple and customizabe React Generator. \nWritten in ES6 (babel) this generator allows the end user to configure the templating of custom templates... \nSpend less time writing boiler-plate code and more time writing the fun stuff.",
"homepage": "https://visormatt.github.io/generator-react-up/",
"files": [
"generators",
"templates"
],
"main": "generators/index.js",
"keywords": [
"React Generator",
"boiler-plate",
"component",
"ES6 Classes",
"Pure Functions",
"Stateless Component",
"Yeoman Generator",
"yeoman-generator"
],
"license": "Apache-2.0",
"repository": "visormatt/generator-react-up",
"scripts": {
"build": "babel -d ./ ./src/ --ignore spec.js",
"develop": "babel -d ./ ./src/ --source-maps inline --watch --ignore spec.js",
"postversion": "git push && git push --tags",
"stop-prepublish": "gulp prepublish",
"test": "gulp",
"version": "npm run build && git add -A"
},
"dependencies": {
"chalk": "^1.0.0",
"fs-extra": "^1.0.0",
"gulp-beautify": "^2.0.0",
"lodash": "^4.17.2",
"yeoman-generator": "^0.24.1",
"yosay": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.12.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-xo-space": "^0.13.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.3",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^2.0.0",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"yeoman-assert": "^2.0.0",
"yeoman-test": "^1.0.0"
}
}