You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.1 KiB
111 lines
3.1 KiB
{
|
|
"name": "antd",
|
|
"version": "0.10.0-beta1",
|
|
"stableVersion": "0.9.1",
|
|
"title": "Ant Design",
|
|
"description": "一个 UI 设计语言",
|
|
"homepage": "http://ant.design/",
|
|
"keywords": [
|
|
"ant",
|
|
"design",
|
|
"react",
|
|
"react-component",
|
|
"component",
|
|
"components",
|
|
"ui",
|
|
"framework",
|
|
"frontend"
|
|
],
|
|
"contributors": [
|
|
"ant"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ant-design/ant-design"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ant-design/ant-design/issues"
|
|
},
|
|
"main": "lib/index",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"css-animation": "~1.1.0",
|
|
"enter-animation": "~0.5.0",
|
|
"gregorian-calendar": "~3.0.0",
|
|
"gregorian-calendar-format": "~3.0.1",
|
|
"object-assign": "~4.0.1",
|
|
"rc-animate": "~1.2.9",
|
|
"rc-calendar": "~3.16.1",
|
|
"rc-checkbox": "~1.1.1",
|
|
"rc-collapse": "~1.3.0",
|
|
"rc-dialog": "~5.0.2",
|
|
"rc-dropdown": "~1.3.3",
|
|
"rc-form-validation": "~2.4.7",
|
|
"rc-input-number": "~2.1.2",
|
|
"rc-menu": "~4.6.0",
|
|
"rc-notification": "~1.1.0",
|
|
"rc-pagination": "~1.1.0",
|
|
"rc-progress": "~1.0.0",
|
|
"rc-radio": "~2.0.0",
|
|
"rc-select": "~4.9.0",
|
|
"rc-slider": "~1.4.0",
|
|
"rc-steps": "~1.3.2",
|
|
"rc-switch": "~1.2.0",
|
|
"rc-table": "~3.2.0",
|
|
"rc-tabs": "~5.3.2",
|
|
"rc-tooltip": "~2.8.0",
|
|
"rc-tree": "~0.16.2",
|
|
"rc-upload": "~1.6.4",
|
|
"rc-util": "~2.0.3",
|
|
"react-slick": "~0.8.0",
|
|
"reqwest": "~2.0.5",
|
|
"util-deprecate": "~1.0.1",
|
|
"velocity-animate": "~1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer-loader": "^3.1.0",
|
|
"babel": "^5.8.12",
|
|
"babel-core": "^5.8.12",
|
|
"babel-eslint": "^4.1.0",
|
|
"babel-loader": "^5.3.2",
|
|
"busboy": "^0.2.9",
|
|
"chalk": "^1.1.0",
|
|
"css-loader": "^0.14.1",
|
|
"eslint": "^1.1.0",
|
|
"eslint-config-airbnb": "^0.0.8",
|
|
"eslint-plugin-babel": "^2.1.1",
|
|
"eslint-plugin-react": "^3.3.1",
|
|
"extract-text-webpack-plugin": "^0.8.1",
|
|
"gh-pages": "^0.3.1",
|
|
"json-loader": "^0.5.1",
|
|
"less": "~2.5.1",
|
|
"less-loader": "^2.2.0",
|
|
"lesslint": "^0.1.7",
|
|
"lodash": "^3.10.0",
|
|
"nico-jsx": "~0.5.8",
|
|
"precommit-hook": "^1.0.7",
|
|
"react": "~0.13.0",
|
|
"react-router": "1.0.0-rc1",
|
|
"webpack": "^1.10.1",
|
|
"webpack-dev-middleware": "^1.2.0"
|
|
},
|
|
"scripts": {
|
|
"babel": "babel components --out-dir lib",
|
|
"release": "npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*",
|
|
"start": "npm run clean && nico server --watch",
|
|
"clean": "rm -rf _site dist",
|
|
"deploy": "rm -rf node_modules && node scripts/install.js && npm run just-deploy",
|
|
"just-deploy": "npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js",
|
|
"lint": "eslint components index.js --ext '.js,.jsx'",
|
|
"lesslint": "lesslint style",
|
|
"test": "webpack && npm run lint",
|
|
"pub": "sh ./scripts/publish.sh",
|
|
"beta": "sh ./scripts/publish.sh --tag beta"
|
|
},
|
|
"precommit": [
|
|
"lint"
|
|
]
|
|
}
|
|
|