package.json 1.8 KB
Newer Older
A
afc163 已提交
1
{
A
afc163 已提交
2
  "name": "antd",
偏右 已提交
3
  "version": "0.1.0",
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
    "buildbranch": "0.0.3",
A
afc163 已提交
35
    "concurrently": "~0.1.0",
A
afc163 已提交
36
    "css-loader": "~0.13.1",
A
afc163 已提交
37 38
    "eslint": "~0.22.1",
    "eslint-plugin-react": "~2.5.0",
A
afc163 已提交
39
    "extract-text-webpack-plugin": "~0.8.1",
Y
yiminghe 已提交
40
    "jshint": "~2.8.0",
A
afc163 已提交
41
    "json-loader": "~0.5.1",
A
afc163 已提交
42 43
    "less": "~2.5.1",
    "less-loader": "~2.2.0",
A
afc163 已提交
44
    "lodash": "~3.8.0",
A
afc163 已提交
45
    "nico-jsx": "~0.5.8",
Y
yiminghe 已提交
46
    "precommit-hook": "~1.0.7",
A
afc163 已提交
47
    "style-loader": "~0.12.2",
48 49
    "webpack": "~1.9.7",
    "webpack-dev-middleware": "~1.0.11"
A
update  
afc163 已提交
50 51
  },
  "scripts": {
A
afc163 已提交
52
    "babel": "rm -rf lib && babel components --out-dir lib && rm -rf components && mv lib components",
A
afc163 已提交
53
    "build": "npm run clean && webpack && nico build",
54
    "start": "npm run clean && nico server --watch",
A
afc163 已提交
55
    "clean": "rm -rf _site",
A
afc163 已提交
56
    "deploy": "npm run build && node deploy.js",
A
afc163 已提交
57
    "lint": "eslint components index.js --ext '.js,.jsx'",
A
afc163 已提交
58 59
    "test": "webpack && npm run lint",
    "postinstall": "npm run babel"
Y
yiminghe 已提交
60 61 62 63
  },
  "precommit": [
    "lint"
  ]
A
afc163 已提交
64
}