forked from styleguidist/react-styleguidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.05 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-styleguidist",
"description": "React components style guide generator",
"version": "2.2.0",
"homepage": "https://github.com/sapegin/react-styleguidist",
"author": {
"name": "Artem Sapegin",
"url": "http://sapegin.me/"
},
"repository": {
"type": "git",
"url": "git://github.com/sapegin/react-styleguidist.git"
},
"bugs": {
"url": "https://github.com/sapegin/react-styleguidist/issues"
},
"license": "MIT",
"main": "src/build.js",
"bin": {
"styleguidist": "bin/styleguidist"
},
"files": [
"bin",
"src",
"loaders"
],
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"babel-core": "6.7.6",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.6.1",
"babel-standalone": "6.7.4",
"chalk": "1.1.3",
"classnames": "2.2.3",
"codemirror": "5.13.4",
"css-loader": "0.23.1",
"entities": "1.1.1",
"express": "4.13.4",
"findup": "0.1.5",
"glob": "7.0.3",
"highlight.js": "9.3.0",
"html-webpack-plugin": "2.16.0",
"json-loader": "0.5.4",
"lodash": "4.11.1",
"markdown-it": "6.0.1",
"markdown-react-js": "0.3.0",
"minimist": "1.2.0",
"prettyjson": "1.1.3",
"react-codemirror": "0.2.6",
"react-docgen": "2.8.2",
"semver-utils": "1.1.1",
"style-loader": "0.13.1",
"webpack": "1.13.0",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0",
"webpack-merge": "0.11.0"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"babel-eslint": "~4.1.8",
"babel-register": "~6.7.2",
"chai": "~3.5.0",
"cross-env": "~1.0.7",
"css-modules-require-hook": "~4.0.0",
"dog-names": "~1.0.2",
"eslint": "~1.10.3",
"eslint-plugin-react": "~3.16.1",
"expect-react-shallow": "~1.2.0",
"gh-pages": "~0.11.0",
"mocha": "~2.4.5",
"mock-require": "~1.2.1",
"react": "~0.14.8",
"react-dom": "~0.14.8",
"react-modal": "~1.1.2"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "cross-env NODE_ENV=test mocha test",
"mocha:watch": "cross-env NODE_ENV=test mocha --watch --reporter min test",
"start": "./bin/styleguidist server --config examples/basic/styleguide.config.js",
"start:customised": "./bin/styleguidist server --config examples/customised/styleguide.config.js",
"start:sections": "./bin/styleguidist server --config examples/basic-sections/styleguide.config.js",
"lint": "eslint src --ext .js",
"build": "./bin/styleguidist build --config examples/basic/styleguide.config.js",
"build:customised": "./bin/styleguidist build --config examples/customised/styleguide.config.js",
"publish": "npm run build && gh-pages -d examples/basic/styleguide"
},
"keywords": [
"react",
"jsx",
"styleguide",
"style guide",
"documentation",
"docs",
"generator",
"component",
"components"
]
}