mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 23:55:20 +00:00
38 lines
935 B
JSON
38 lines
935 B
JSON
{
|
|
"name": "gitbook-plugin",
|
|
"version": "0.0.0",
|
|
"description": "CLI for compiling and testing plugins",
|
|
"main": "./lib/index.js",
|
|
"dependencies": {
|
|
"babel-preset-es2015": "^6.14.0",
|
|
"babel-preset-react": "^6.11.1",
|
|
"babelify": "^7.3.0",
|
|
"browserify": "^13.1.0",
|
|
"commander": "^2.9.0",
|
|
"q": "^1.4.1",
|
|
"winston": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.14.0",
|
|
"babel-preset-es2015": "^6.14.0",
|
|
"babel-preset-react": "^6.11.1",
|
|
"babel-preset-stage-2": "^6.13.0"
|
|
},
|
|
"bin": {
|
|
"gitbook-plugin": "./lib/cli.js"
|
|
},
|
|
"scripts": {
|
|
"dist": "rm -rf lib/ && babel -d lib/ src/",
|
|
"prepublish": "npm run dist"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/GitbookIO/gitbook.git"
|
|
},
|
|
"author": "GitBook Inc. <contact@gitbook.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/GitbookIO/gitbook/issues"
|
|
}
|
|
}
|