1 Star 0 Fork 8

JRK_dai/pile.js

forked from DiDi-opensource/pile.js 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 4.69 KB
一键复制 编辑 原始数据 按行查看 历史
renmaomin 提交于 2019-02-14 17:21 . chore(release): 1.0.2
{
"name": "pile-ui",
"version": "1.0.2",
"description": "pile components build with React.",
"main": "./dist",
"scripts": {
"start": "webpack-dev-server --hot --config webpack.config.dev.js",
"build": "npm run clean & NODE_ENV=production babel ./src --out-dir ./dist --copy-files && npm run build:less && npm run clean:less && npm run build:mincss",
"build:less": "find dist/styles/index.less -exec lessc --clean-css='--s1 --advanced --compatibility=ie8' {} \\; > ./dist/styles/pile.min.css",
"build:js": " ./node_modules/.bin/babel src --copy-files --source-maps --extensions .es6,.es,.jsx,.js --out-dir dist",
"buildpage": "npm run clean:demo & NODE_ENV=production webpack -p --config webpack.config.prod.js --progress --colors",
"build:mincss": "gulp css",
"test": "mocha --compilers js:babel-core/register --recursive -r ignore-styles -r jsdom-global/register",
"test:watch": "npm run test -- --watch",
"clean": "rimraf ./dist",
"clean:less": "rimraf ./dist/styles/*.less",
"clean:demo": "rimraf ./demo",
"release": "standard-version",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git@github.com:didi/pile.js.git"
},
"homepage": "https://didi.github.io/pile.js/docs",
"keywords": [
"pile",
"pile-ui",
"react ui",
"mobile"
],
"author": "Pile Team",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.18.0",
"classnames": "^2.2.5",
"es6-viewpoint": "^0.1.2",
"stilr": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"autoprefixer": "^6.3.5",
"babel": "^6.0.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.0.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^6.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-require-ignore": "0.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.18.0",
"babel-standalone": "^6.18.2",
"chai": "^4.1.2",
"codemirror": "^5.20.2",
"commitizen": "^2.9.6",
"css-loader": "^0.23.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^2.6.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"github-markdown-css": "^2.4.1",
"gulp": "^4.0.0",
"gulp-clean-css": "^4.0.0",
"history": "^1.17.0",
"html-webpack-plugin": "^2.14.0",
"husky": "^0.15.0-rc.13",
"ignore-styles": "^5.0.1",
"jsdom": "^9.8.3",
"jsdom-global": "2.1.0",
"json-loader": "^0.5.4",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"lint-staged": "^7.0.4",
"mocha": "^2.3.4",
"nyc": "^9.0.1",
"open-browser-webpack-plugin": "0.0.1",
"postcss-loader": "^0.8.2",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"react": "^15.6.2",
"react-addons-css-transition-group": "^0.14.7 || ^15.0.0-0 || 15.x",
"react-addons-test-utils": "^15.6.2",
"react-codemirror": "^0.2.6",
"react-docgen": "^2.12.1",
"react-dom": "^15.6.2",
"react-fontawesome": "^1.3.1",
"react-remarkable": "^1.1.1",
"react-router": "^1.0.2",
"react-router-dom": "^4.1.1",
"react-split-pane": "^0.1.52",
"react-tapper": "^0.1.10",
"rimraf": "^2.4.3",
"sinon": "^1.17.2",
"standard-version": "^4.3.0",
"style-loader": "^0.13.0",
"uglify-loader": "^1.2.0",
"url-loader": "^0.5.7",
"webpack": "^2.3.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.9.1",
"webpack-uglify-parallel": "^0.1.3",
"webpack-visualizer-plugin": "^0.1.10"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0-0 || 15.x || ^16.0.0-0 || 16.x",
"react-dom": "^0.14.x || ^15.0.0-0 || 15.x || ^16.0.0-0 || 16.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/dfx/pile.js.git
git@gitee.com:dfx/pile.js.git
dfx
pile.js
pile.js
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385