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.
64 lines
1.7 KiB
64 lines
1.7 KiB
6 years ago
|
{
|
||
|
"name": "@vue/crontab",
|
||
|
"version": "1.0.0-beta.10",
|
||
|
"description": "crontab",
|
||
|
"author": "quanquan <gongzijian@analysys.com.cn>",
|
||
|
"main": "dist/index.js",
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"dev": "npm run clean && parcel ./example/index.html -p 3000",
|
||
|
"build": "npm run clean && cross-env NODE_ENV=production webpack --config ./build/webpack.config.prod.js",
|
||
|
"lint": "standard \"**/*.{js,vue}\"",
|
||
|
"lint:fix": "standard \"**/*.{js,vue}\" --fix",
|
||
|
"clean": "rimraf dist",
|
||
|
"start": "npm run dev",
|
||
|
"test": "npm run lint",
|
||
|
"prepublishOnly": "npm run build"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@fedor/progress-webpack-plugin": "^1.0.0",
|
||
|
"@fedor/standard": "^1.0.3",
|
||
|
"autoprefixer": "^9.1.3",
|
||
|
"babel-core": "^6.26.3",
|
||
|
"babel-eslint": "^8.2.6",
|
||
|
"babel-loader": "^7.1.1",
|
||
|
"babel-preset-env": "^1.7.0",
|
||
|
"cross-env": "^5.2.0",
|
||
|
"css-loader": "^0.28.8",
|
||
|
"cssnano": "^4.1.0",
|
||
|
"extract-text-webpack-plugin": "^3.0.2",
|
||
|
"ghooks": "^2.0.4",
|
||
|
"globby": "^8.0.1",
|
||
|
"node-sass": "^4.9.3",
|
||
|
"optimize-css-assets-webpack-plugin": "3.2.0",
|
||
|
"postcss-loader": "^3.0.0",
|
||
|
"rimraf": "^2.6.2",
|
||
|
"sass-loader": "^7.1.0",
|
||
|
"uglifyjs-webpack-plugin": "^1.2.7",
|
||
|
"vue": "^2.5.17",
|
||
|
"vue-hot-reload-api": "^2.3.0",
|
||
|
"vue-loader": "^15.4.1",
|
||
|
"vue-style-loader": "^4.1.1",
|
||
|
"vue-template-compiler": "^2.5.17",
|
||
|
"webpack": "^3.12.0",
|
||
|
"webpack-merge": "^4.1.4"
|
||
|
},
|
||
|
"standard": {
|
||
|
"parser": "babel-eslint",
|
||
|
"ignore": [
|
||
|
"src/font/*",
|
||
|
"dist/**",
|
||
|
"test/coverage/**",
|
||
|
"karma.conf.js",
|
||
|
"postcss.config.js"
|
||
|
]
|
||
|
},
|
||
|
"config": {
|
||
|
"ghooks": {
|
||
|
"pre-commit": "npm run lint"
|
||
|
}
|
||
|
}
|
||
|
}
|