package.json 1.7 KB
Newer Older
A
afc163 已提交
1
{
A
afc163 已提交
2
  "name": "antd",
A
update  
afc163 已提交
3
  "version": "0.1.0-beta1",
A
afc163 已提交
4
  "title": "Ant Design",
A
afc163 已提交
5
  "description": "一个设计&前端框架",
A
afc163 已提交
6 7 8
  "homepage": "http://ant-design.github.io/",
  "repository": {
    "type": "git",
A
afc163 已提交
9
    "url": "https://github.com/ant-design/ant-design"
A
afc163 已提交
10 11
  },
  "bugs": {
A
afc163 已提交
12
    "url": "https://github.com/ant-design/ant-design/issues"
A
afc163 已提交
13 14
  },
  "dependencies": {
Y
yiminghe 已提交
15
    "css-animation": "~1.0.3",
A
afc163 已提交
16
    "gregorian-calendar": "~3.0.0",
A
afc163 已提交
17
    "gregorian-calendar-format": "~3.0.1",
Y
yiminghe 已提交
18
    "rc-calendar": "~3.10.0",
Y
yiminghe 已提交
19
    "rc-dialog": "~4.3.5",
Y
upgrade  
yiminghe 已提交
20
    "rc-dropdown": "~1.1.1",
Y
yiminghe 已提交
21
    "rc-input-number": "~2.0.0",
22
    "rc-menu": "~3.4.0",
夏奈 已提交
23
    "rc-progress": "~1.0.0",
A
afc163 已提交
24
    "rc-select": "~4.0.0",
Y
upgrade  
yiminghe 已提交
25
    "rc-steps": "~1.1.0",
Y
yiminghe 已提交
26
    "rc-tabs": "~5.1.0",
A
afc163 已提交
27 28
    "rc-tooltip": "~2.2.3",
    "react-router": "~0.13.3"
A
afc163 已提交
29 30
  },
  "devDependencies": {
Y
add lib  
yiminghe 已提交
31
    "babel": "~5.6.14",
A
afc163 已提交
32 33
    "babel-core": "~5.4.7",
    "babel-loader": "~5.1.3",
A
afc163 已提交
34 35
    "buildbranch": "^0.0.3",
    "css-loader": "^0.15.1",
A
afc163 已提交
36 37
    "eslint": "~0.22.1",
    "eslint-plugin-react": "~2.5.0",
A
afc163 已提交
38 39
    "extract-text-webpack-plugin": "^0.8.1",
    "json-loader": "^0.5.1",
A
afc163 已提交
40
    "less": "~2.5.1",
A
afc163 已提交
41 42
    "less-loader": "^2.2.0",
    "lodash": "^3.10.0",
A
afc163 已提交
43
    "nico-jsx": "~0.5.8",
A
afc163 已提交
44 45 46
    "precommit-hook": "^1.0.7",
    "webpack": "^1.10.1",
    "webpack-dev-middleware": "^1.2.0"
A
update  
afc163 已提交
47 48
  },
  "scripts": {
A
afc163 已提交
49
    "babel": "babel components --out-dir lib",
A
afc163 已提交
50
    "build": "npm run clean && webpack && nico build",
A
afc163 已提交
51
    "pack": "npm run clean && webpack --optimize-minimize && nico build",
52
    "start": "npm run clean && nico server --watch",
A
afc163 已提交
53
    "clean": "rm -rf _site",
A
afc163 已提交
54
    "deploy": "npm run build && node scripts/deploy.js",
A
afc163 已提交
55
    "lint": "eslint components index.js --ext '.js,.jsx'",
A
afc163 已提交
56
    "test": "webpack && npm run lint",
A
afc163 已提交
57
    "prepublish": "npm run babel"
Y
yiminghe 已提交
58 59 60 61
  },
  "precommit": [
    "lint"
  ]
A
afc163 已提交
62
}