package.json 2.3 KB
Newer Older
A
afc163 已提交
1
{
A
afc163 已提交
2
  "name": "antd",
A
afc163 已提交
3
  "version": "0.7.0-beta2",
A
afc163 已提交
4
  "title": "Ant Design",
A
afc163 已提交
5
  "description": "一个设计&前端框架",
A
afc163 已提交
6
  "homepage": "http://ant.design/",
Y
yiminghe 已提交
7
  "keywords": [
A
afc163 已提交
8 9 10
    "ant",
    "design",
    "react",
Y
yiminghe 已提交
11
    "react-component",
A
afc163 已提交
12 13 14 15 16
    "component",
    "components",
    "ui",
    "framework",
    "frontend"
Y
yiminghe 已提交
17 18
  ],
  "contributors": ["ant"],
A
afc163 已提交
19 20
  "repository": {
    "type": "git",
A
afc163 已提交
21
    "url": "https://github.com/ant-design/ant-design"
A
afc163 已提交
22 23
  },
  "bugs": {
A
afc163 已提交
24
    "url": "https://github.com/ant-design/ant-design/issues"
A
afc163 已提交
25
  },
Y
yiminghe 已提交
26 27
  "main": "lib/index",
  "files": ["lib"],
Y
yiminghe 已提交
28
  "license": "MIT",
A
afc163 已提交
29
  "dependencies": {
A
afc163 已提交
30
    "gregorian-calendar": "~3.0.0",
A
afc163 已提交
31
    "gregorian-calendar-format": "~3.0.1",
Y
yiminghe 已提交
32
    "object-assign": "~3.0.0",
Y
yiminghe 已提交
33
    "rc-calendar": "~3.10.0",
34
    "rc-collapse": "~1.2.2",
Y
yiminghe 已提交
35
    "rc-dialog": "~4.4.0",
Y
upgrade  
yiminghe 已提交
36
    "rc-dropdown": "~1.1.1",
Y
yiminghe 已提交
37
    "rc-input-number": "~2.0.1",
Y
yiminghe 已提交
38
    "rc-menu": "~3.4.2",
Y
Yuwei Ba 已提交
39 40
    "rc-notification": "~1.0.1",
    "rc-pagination": "^1.0.0",
夏奈 已提交
41
    "rc-progress": "~1.0.0",
Y
yiminghe 已提交
42
    "rc-select": "~4.4.0",
Y
yiminghe 已提交
43
    "rc-slider": "~1.2.6",
羽航 已提交
44
    "rc-steps": "~1.1.4",
Y
yiminghe 已提交
45
    "rc-switch": "~1.2.0",
A
afc163 已提交
46
    "rc-table": "~3.1.0",
Y
yiminghe 已提交
47
    "rc-tabs": "~5.2.0",
蔡伦 已提交
48
    "rc-tooltip": "~2.4.0",
J
jljsj 已提交
49 50
    "rc-checkbox":"~1.0.0",
    "rc-radio":"~2.0.0"
A
afc163 已提交
51 52
  },
  "devDependencies": {
Y
yiminghe 已提交
53 54
    "css-animation": "~1.0.3",
    "autoprefixer-loader": "~2.0.0",
Y
add lib  
yiminghe 已提交
55
    "babel": "~5.6.14",
A
afc163 已提交
56 57
    "babel-core": "~5.4.7",
    "babel-loader": "~5.1.3",
A
afc163 已提交
58
    "buildbranch": "^0.0.3",
A
afc163 已提交
59
    "css-loader": "^0.14.1",
A
afc163 已提交
60 61
    "eslint": "~0.22.1",
    "eslint-plugin-react": "~2.5.0",
A
afc163 已提交
62 63
    "extract-text-webpack-plugin": "^0.8.1",
    "json-loader": "^0.5.1",
A
afc163 已提交
64
    "less": "~2.5.1",
A
afc163 已提交
65 66
    "less-loader": "^2.2.0",
    "lodash": "^3.10.0",
A
afc163 已提交
67
    "nico-jsx": "~0.5.8",
A
afc163 已提交
68 69 70
    "precommit-hook": "^1.0.7",
    "webpack": "^1.10.1",
    "webpack-dev-middleware": "^1.2.0"
A
update  
afc163 已提交
71 72
  },
  "scripts": {
A
afc163 已提交
73
    "babel": "babel components --out-dir lib",
A
afc163 已提交
74
    "build": "npm run clean && webpack && nico build",
A
afc163 已提交
75
    "pack": "npm run clean && webpack --optimize-minimize && nico build",
76
    "start": "npm run clean && nico server --watch",
A
afc163 已提交
77
    "clean": "rm -rf _site",
Y
yiminghe 已提交
78
    "deploy": "rm -rf node_modules && node scripts/install.js && npm run pack && node scripts/deploy.js",
A
afc163 已提交
79
    "lint": "eslint components index.js --ext '.js,.jsx'",
A
afc163 已提交
80
    "test": "webpack && npm run lint",
Y
yiminghe 已提交
81
    "prepublish": "npm run babel  && rm -rf dist && webpack && node scripts/prenpm.js"
Y
yiminghe 已提交
82 83 84 85
  },
  "precommit": [
    "lint"
  ]
A
afc163 已提交
86
}