mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-09 04:31:35 +08:00
128 lines
4.6 KiB
JSON
128 lines
4.6 KiB
JSON
{
|
|
"name": "naive-ui",
|
|
"version": "0.7.9",
|
|
"description": "",
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"scripts": {
|
|
"build:style": "npm run clean && node build/buildStyle.js",
|
|
"build:icon": "npm run clean && node build/buildIcon.js",
|
|
"build:js": "npm run clean && rollup -c",
|
|
"build:demo": "npm run build && npm run demo",
|
|
"build:doc": "npm run build && cross-env NODE_ENV=production && rm -rf doc/dist && webpack --config build/webpack.doc.js",
|
|
"build": "npm run clean && node build/buildStyle.js && node build/buildIcon.js && rollup -c",
|
|
"clean": "rm -rf lib && rm -rf es && rm -rf dist",
|
|
"demo": "cross-env NODE_ENV=development && webpack-dev-server --config build/webpack.demo.js",
|
|
"dev": "cross-env NODE_ENV=development && webpack-dev-server --config build/webpack.dev.js",
|
|
"lint": "eslint --no-error-on-unmatched-pattern --fix \"src/**/*.{js,vue}\" \"test/**/*.{js,vue}\" \"build/**/*.{js,vue}\" \"demo/**/*.{js,vue}\" && stylelint \"styles/**/*.scss\" --fix",
|
|
"lint:js": "eslint --no-error-on-unmatched-pattern --fix \"src/**/*.{js,vue}\" \"test/**/*.{js,vue}\" \"build/**/*.{js,vue}\" \"demo/**/*.{js,vue}\"",
|
|
"lint:style": "stylelint \"styles/**/*.scss\" --fix",
|
|
"release:doc": "npm run build:doc && sudo bash doc/deploy-doc.sh",
|
|
"release:doc:no-build": "sudo bash doc/deploy-doc.sh",
|
|
"release:package": "npm run build && npm publish",
|
|
"test": "cross-env NODE_ENV=development BABEL_ENV=test karma start test/unit/karma.conf.js",
|
|
"test:cov": "cross-env NODE_ENV=development BABEL_ENV=test karma start test/unit/karma.conf.js && http-server test/unit/coverage"
|
|
},
|
|
"author": "lecong.zhang",
|
|
"license": "ISC",
|
|
"publishConfig": {
|
|
"registry": "***REMOVED***"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"es",
|
|
"lib",
|
|
"src",
|
|
"styles",
|
|
"README.md"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.8.4",
|
|
"@babel/preset-env": "^7.8.4",
|
|
"@kazupon/vue-i18n-loader": "^0.4.1",
|
|
"@rollup/plugin-node-resolve": "^6.1.0",
|
|
"@rollup/plugin-strip": "^1.3.2",
|
|
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
|
|
"@vue/babel-preset-app": "^3.12.1",
|
|
"@vue/babel-preset-jsx": "^1.1.2",
|
|
"@vue/eslint-config-standard": "^4.0.0",
|
|
"@vue/test-utils": "^1.0.0-beta.31",
|
|
"angular-html-parser": "^1.4.0",
|
|
"autoprefixer": "^9.7.4",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-istanbul": "^5.2.0",
|
|
"babel-plugin-syntax-jsx": "^6.18.0",
|
|
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"chai": "^4.2.0",
|
|
"copy-webpack-plugin": "^5.1.1",
|
|
"cross-env": "^5.2.1",
|
|
"css-loader": "^2.1.1",
|
|
"cssnano": "^4.1.10",
|
|
"emoji-regex": "^8.0.0",
|
|
"emoji-unicode": "^1.1.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-vue": "^5.0.0",
|
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
"file-loader": "^3.0.1",
|
|
"glob": "^7.1.6",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"http-server": "^0.11.1",
|
|
"jsdom": "^15.2.1",
|
|
"karma": "^4.4.1",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-coverage": "^1.1.2",
|
|
"karma-jsdom-launcher": "^7.1.1",
|
|
"karma-mocha": "^1.3.0",
|
|
"karma-sourcemap-loader": "^0.3.7",
|
|
"karma-spec-reporter": "0.0.32",
|
|
"karma-webpack": "^3.0.5",
|
|
"loader-utils": "^1.2.3",
|
|
"marked": "^0.7.0",
|
|
"memory-fs": "^0.4.1",
|
|
"mocha": "^6.2.2",
|
|
"ncp": "^2.0.0",
|
|
"node-sass": "^4.13.1",
|
|
"sass-loader": "^7.3.1",
|
|
"postcss": "^7.0.26",
|
|
"postcss-cli": "^6.1.3",
|
|
"postcss-loader": "^3.0.0",
|
|
"prettier-eslint": "^9.0.1",
|
|
"progress-bar-webpack-plugin": "^1.12.1",
|
|
"regenerator-runtime": "^0.13.3",
|
|
"rollup": "^1.31.0",
|
|
"rollup-plugin-terser": "^5.2.0",
|
|
"rollup-plugin-vue": "^5.1.6",
|
|
"schema-utils": "^1.0.0",
|
|
"sinon": "^7.5.0",
|
|
"style-loader": "^0.23.1",
|
|
"stylelint": "^10.1.0",
|
|
"stylelint-config-recommended-scss": "^3.3.0",
|
|
"stylelint-scss": "^3.14.2",
|
|
"terser": "^4.6.3",
|
|
"tinycolor2": "^1.4.1",
|
|
"url-loader": "^1.1.2",
|
|
"vue": "^2.6.11",
|
|
"vue-i18n": "^8.15.3",
|
|
"vue-loader": "^15.8.3",
|
|
"vue-router": "^3.1.5",
|
|
"vue-template-compiler": "^2.6.11",
|
|
"webpack": "^4.41.6",
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
|
"webpack-cli": "^3.3.10",
|
|
"webpack-dev-server": "^3.10.3"
|
|
},
|
|
"dependencies": {
|
|
"async-validator": "^1.11.5",
|
|
"date-fns": "^2.9.0",
|
|
"highlight.js": "^9.18.1",
|
|
"lodash-es": "^4.17.15",
|
|
"resize-observer-polyfill": "^1.5.1",
|
|
"vue-runtime-helpers": "^1.1.2",
|
|
"vue-virtual-scroller": "^1.0.0-rc.2"
|
|
}
|
|
}
|