forked from vectordotdev/gitdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 2.95 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "gitdocs",
"version": "2.0.0-beta23",
"description": "Easy to use, SEO-friendly, beautiful documentation that lives in your git repo.",
"license": "MIT",
"homepage": "https://github.com/timberio/gitdocs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/timberio/gitdocs.git"
},
"engines": {
"node": ">=8.9"
},
"keywords": [
"documentation",
"static",
"markdown",
"react",
"docs"
],
"files": [
"bin/",
"src/",
"starter/",
"themes/",
"license.md",
"readme.md"
],
"bin": {
"gitdocs": "bin/gitdocs"
},
"scripts": {
"test:lint": "eslint src tests themes",
"test:unit": "./bin/test 'src/**/*.spec.js'",
"test:integration": "./bin/test 'tests/**/*.test.js'",
"test": "nyc npm-run-all test:*",
"posttest": "nyc report -r=lcov",
"coveralls": "cat coverage/lcov.info | coveralls",
"compile": "./bin/compile"
},
"devDependencies": {
"code": "^5.2.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-timber": "^1.0.22",
"execa": "^0.10.0",
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"nexe": "^2.0.0-rc.28",
"npm-run-all": "^4.1.3",
"nyc": "^11.8.0",
"pkg": "^4.3.1",
"sinon": "^5.0.10"
},
"dependencies": {
"@timberio/ui": "^2.0.1",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.3",
"connect": "^3.6.6",
"deepmerge": "^2.1.0",
"emotion": "^9.1.3",
"emotion-server": "^9.1.3",
"exit-hook": "^2.0.0",
"file-loader": "^1.1.11",
"fs-extra": "^6.0.1",
"gray-matter": "^4.0.1",
"history": "^4.7.2",
"html-minifier": "^3.5.16",
"js-search": "^1.4.2",
"markdown-to-jsx": "6.6.7",
"markdown-toc": "^1.2.0",
"minimist": "^1.2.0",
"ncp": "^2.0.0",
"progress": "^2.0.0",
"prop-types": "^15.6.1",
"raf": "^3.4.0",
"react": "^16.4.0",
"react-click-outside": "^3.0.1",
"react-content-loader": "^3.1.2",
"react-dom": "^16.4.0",
"react-emotion": "^9.1.3",
"react-feather": "^1.1.0",
"react-helmet": "^5.2.0",
"react-highlight-words": "^0.11.0",
"react-router-dom": "^4.2.2",
"react-syntax-highlighter": "^7.0.4",
"serve-static": "^1.13.2",
"simple-git": "^1.95.0",
"tmp": "^0.0.33",
"webpack": "^4.8.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"ws": "^5.2.0"
},
"eslintConfig": {
"extends": "timber",
"globals": {
"describe": true,
"it": true,
"beforeEach": true,
"afterEach": true
},
"rules": {
"react/no-did-mount-set-state": 0
}
},
"pkg": {
"scripts": [
"src/**/*.js"
],
"assets": [
"starter/**/*",
"themes/**/*",
"node_modules/**/*"
]
},
"nyc": {
"all": true,
"include": [
"src"
],
"exclude": [
"**/*.spec.js"
]
}
}