gitdocs
Version:
Easy to use, SEO-friendly, beautiful documentation that lives in your git repo.
136 lines (135 loc) • 3.02 kB
JSON
{
"name": "gitdocs",
"version": "2.0.0",
"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"
]
}
}