UNPKG

2.31 kBJSONView Raw
1{
2 "name": "react-styleguide-generator",
3 "version": "1.0.7",
4 "description": "Easily generate a good-looking styleguide by adding some documentation to your React project",
5 "main": "lib/rsg.js",
6 "bin": {
7 "rsg": "bin/rsg"
8 },
9 "scripts": {
10 "test": "standard && mocha test/**/*.js",
11 "prod": "npm run clean && npm run build",
12 "build": "npm run build:css && npm run build:js",
13 "build:css": "cssnext -c app/index.css dist/app.css",
14 "build:js": "browserify -t [babelify --stage 0] -x react app | uglifyjs -m -o dist/app.js",
15 "dev-build": "npm run dev-build:css && npm run dev-build:js",
16 "dev-build:css": "cssnext -s app/index.css dist/app.css",
17 "dev-build:js": "browserify -d -t [babelify --stage 0] -x react app -o dist/app.js",
18 "clean": "rimraf dist/*",
19 "styleguide": "node bin/rsg 'example/components/**/*.js'",
20 "ghpages": "npm run styleguide -- -r 'react-styleguide-generator' && gh-pages -d styleguide"
21 },
22 "files": [
23 "bin",
24 "dist",
25 "lib",
26 "LICENSE",
27 "package.json",
28 "README.md"
29 ],
30 "repository": {
31 "type": "git",
32 "url": "git+https://github.com/pocotan001/react-styleguide-generator.git"
33 },
34 "keywords": [
35 "component",
36 "documentation",
37 "generator",
38 "markdown",
39 "react",
40 "styleguide"
41 ],
42 "author": "pocotan001",
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/pocotan001/react-styleguide-generator/issues"
46 },
47 "homepage": "https://github.com/pocotan001/react-styleguide-generator#readme",
48 "standard": {
49 "parser": "babel-eslint",
50 "ignore": [
51 "dist",
52 "example"
53 ]
54 },
55 "engines": {
56 "node": ">=0.10.33"
57 },
58 "peerDependencies": {
59 "react": ">=0.13"
60 },
61 "dependencies": {
62 "babelify": "^6.1.2",
63 "browserify": "^10.2.4",
64 "es6-promise": "^2.3.0",
65 "fs-extra": "^0.20.1",
66 "glob": "^5.0.10",
67 "minimist": "^1.1.1",
68 "mustache": "^2.1.2",
69 "object-assign": "^3.0.0"
70 },
71 "devDependencies": {
72 "babel-eslint": "^3.1.18",
73 "cssnext": "^1.7.1",
74 "gh-pages": "^0.3.1",
75 "highlight.js": "^8.6.0",
76 "marked": "^0.3.3",
77 "mocha": "^2.2.5",
78 "page": "^1.6.3",
79 "react": "^0.13.3",
80 "react-bootstrap": "^0.23.5",
81 "rimraf": "^2.4.0",
82 "standard": "^4.3.2",
83 "uglify-js": "^2.4.23"
84 }
85}