UNPKG

atool-doc

Version:

Static demo site generator based on atool-build & dora.

94 lines (93 loc) 2.56 kB
{ "name": "atool-doc", "version": "0.9.2", "description": "Static demo site generator based on atool-build & dora.", "keywords": [ "atool", "doc" ], "author": "jaredleechn <jaredleechn@gmail.com>", "homepage": "https://github.com/ant-tool/atool-doc", "repository": { "type": "git", "url": "https://github.com/ant-tool/atool-doc" }, "bugs": { "url": "https://github.com/ant-tool/atool-doc/issues" }, "license": "ISC", "main": "./lib/doc.js", "files": [ "lib", "bin", "tpl" ], "bin": { "atool-doc": "./bin/atool-doc.js" }, "scripts": { "start": "concurrently 'npm run dev' 'npm run doc'", "build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --ignore __tests__", "dev": "./node_modules/.bin/babel src -s --out-dir lib --watch --ignore __tests__", "doc": "node bin/atool-doc.js --doraPlugins proxy --port 8987", "lint": "eslint src", "eslint-fix": "eslint --fix src", "gh-pages": "npm run doc -- --build && gh-pages -d __site", "pub": "npm run build && npm publish && npm run gh-pages", "beta": "npm run build && npm publish --tag beta && npm run gh-pages", "test": "npm run lint", "coveralls": "cat ./coverage/lcov.info | coveralls" }, "peerDependencies": { "atool-build": "~0.11.0", "dora": "~0.3.0" }, "dependencies": { "atool-monitor": "0.x", "chokidar": "~1.5.1", "commander": "~2.9.0", "copy-webpack-plugin": "^3.0.1", "dora-plugin-proxy": "~0.6.1", "ejs": "^2.4.2", "glob": "~7.0.3", "highlight.js": "~9.2.0", "html-webpack-plugin": "~2.9.0", "koa-webpack-dev-middleware": "~1.1.0", "loader-utils": "~0.2.12", "mark-twain": "~0.2.0-beta.4", "marked": "~0.3.5", "ramda": "~0.19.1", "source-map-loader": "^0.2.1", "style-loader": "~0.13.0" }, "devDependencies": { "atool-build": "~0.11.0", "babel-cli": "~6.6.5", "babel-eslint": "^6.0.4", "babel-plugin-add-module-exports": "~0.1.2", "babel-preset-es2015": "~6.6.0", "babel-preset-stage-0": "~6.5.0", "concurrently": "^2.1.0", "dora": "~0.3.2", "eslint": "^2.0.0", "eslint-config-airbnb": "^7.0.0", "eslint-plugin-jsx-a11y": "^0.6.2", "eslint-plugin-react": "~4.3.0", "gh-pages": "~0.11.0", "isomorphic-fetch": "~2.2.1", "pre-commit": "~1.1.2", "raw-loader": "~0.5.1" }, "babel": { "presets": [ "es2015", "stage-0" ], "plugins": [ "add-module-exports" ] }, "pre-commit": [ "lint" ] }