mirror of
https://github.com/status-im/react-native.git
synced 2025-01-28 18:25:06 +00:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "react-docgen",
|
|
"version": "1.0.0",
|
|
"description": "A CLI and toolkit to extract information from React components for documentation generation.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reactjs/react-docgen.git"
|
|
},
|
|
"bugs": "https://github.com/reactjs/react-docgen/issues",
|
|
"bin": {
|
|
"react-docgen": "bin/react-docgen.js"
|
|
},
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"watch": "jsx lib/ dist/ --harmony --strip-types -w",
|
|
"build": "rm -rf dist/ && jsx lib/ dist/ --harmony --strip-types --no-cache-dir",
|
|
"prepublish": "npm run build",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"documentation-generation"
|
|
],
|
|
"author": "Felix Kling",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"async": "^0.9.0",
|
|
"node-dir": "^0.1.6",
|
|
"nomnom": "^1.8.1",
|
|
"recast": "^0.9.17"
|
|
},
|
|
"devDependencies": {
|
|
"jest-cli": "^0.3.0",
|
|
"react-tools": "^0.12.2"
|
|
},
|
|
"jest": {
|
|
"scriptPreprocessor": "./tests/preprocessor",
|
|
"testPathDirs": ["lib"],
|
|
"unmockedModulePathPatterns": ["tests/utils"]
|
|
}
|
|
}
|