Comparing version 0.0.1 to 0.1.0
130
package.json
{ | ||
"name": "thin-ui", | ||
"version": "0.0.1", | ||
"version": "0.1.0", | ||
"description": "a lightweight ui component lib for vue", | ||
"main": "index.js", | ||
"main": "lib/index.js", | ||
"module": "es/index.js", | ||
"typings": "lib/index.d.ts", | ||
"files": [ | ||
"es", | ||
"lib", | ||
"dist" | ||
], | ||
"sideEffects": [ | ||
"dist/*", | ||
"es/**/style/*", | ||
"lib/**/style/*", | ||
"*.less" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"type-check": "tsc --noEmit", | ||
"type-check:watch": "npm run type-check -- --watch", | ||
"dev": "cross-env BUILD_ENV=development webpack-dev-server --progress --config ./build/webpack.config.dev.js", | ||
"build:entry": "node ./build/build-entry.js", | ||
"build:components": "npm run type-check && npm run lint && gulp -f ./build/build-components.js", | ||
"build:style": "npm run stylelint && gulp -f ./build/build-style.js", | ||
"build:umd": "cross-env BUILD_ENV=production webpack --config build/webpack.config.dist.js", | ||
"build:dist": "npm run build:entry && npm run build:components && npm run build:style && npm run build:umd", | ||
"build:site": "npm run type-check && cross-env BUILD_ENV=production webpack --config build/webpack.config.site.js", | ||
"lint": "eslint --ext .js,.vue,.ts,.tsx src site", | ||
"stylelint": "stylelint {src,site}/**/*.{vue,htm,html,css,less}", | ||
"test": "jest" | ||
}, | ||
@@ -21,3 +45,101 @@ "repository": { | ||
}, | ||
"homepage": "https://github.com/KyLeoHC/thin-ui#readme" | ||
"homepage": "https://github.com/KyLeoHC/thin-ui#readme", | ||
"devDependencies": { | ||
"@babel/cli": "^7.6.4", | ||
"@babel/core": "^7.6.4", | ||
"@babel/plugin-proposal-class-properties": "^7.5.5", | ||
"@babel/plugin-proposal-decorators": "^7.6.0", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.6.2", | ||
"@babel/plugin-syntax-dynamic-import": "^7.2.0", | ||
"@babel/plugin-transform-runtime": "^7.6.2", | ||
"@babel/preset-env": "^7.6.3", | ||
"@babel/preset-typescript": "^7.6.0", | ||
"@types/jest": "^24.0.18", | ||
"@typescript-eslint/eslint-plugin": "^2.3.3", | ||
"@typescript-eslint/parser": "^2.3.3", | ||
"@vue/babel-preset-jsx": "^1.1.1", | ||
"@vue/test-utils": "^1.0.0-beta.29", | ||
"autoprefixer": "^9.6.4", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-loader": "^8.0.6", | ||
"babel-plugin-import": "^1.12.2", | ||
"copy-webpack-plugin": "^5.0.4", | ||
"core-js": "^3.3.1", | ||
"cross-env": "^6.0.3", | ||
"css-loader": "^3.2.0", | ||
"cssnano": "^4.1.10", | ||
"del": "^5.1.0", | ||
"eslint": "^6.5.1", | ||
"eslint-config-standard": "^14.1.0", | ||
"eslint-formatter-friendly": "^7.0.0", | ||
"eslint-loader": "^3.0.2", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-node": "^10.0.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-react": "^7.16.0", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"eslint-plugin-vue": "^5.2.3", | ||
"gulp": "^4.0.2", | ||
"gulp-less": "^4.0.1", | ||
"gulp-postcss": "^8.0.0", | ||
"gulp-rename": "^1.4.0", | ||
"gulp-typescript": "^5.0.1", | ||
"html-webpack-plugin": "^3.2.0", | ||
"husky": "^3.0.9", | ||
"inline-source-webpack-plugin": "^1.4.1", | ||
"jest": "^24.9.0", | ||
"jest-serializer-vue": "^2.0.2", | ||
"jest-watch-typeahead": "^0.4.0", | ||
"less": "^3.10.3", | ||
"less-loader": "^5.0.0", | ||
"lint-staged": "^9.4.2", | ||
"merge2": "^1.3.0", | ||
"mini-css-extract-plugin": "^0.8.0", | ||
"optimize-css-assets-webpack-plugin": "^5.0.3", | ||
"postcss-load-config": "^2.1.0", | ||
"postcss-loader": "^3.0.0", | ||
"stylelint": "^11.1.1", | ||
"stylelint-config-standard": "^19.0.0", | ||
"stylelint-webpack-plugin": "^1.0.2", | ||
"through2": "^3.0.1", | ||
"typescript": "^3.6.4", | ||
"uppercamelcase": "^3.0.0", | ||
"vue": "^2.6.10", | ||
"vue-jest": "^3.0.5", | ||
"vue-loader": "^15.7.1", | ||
"vue-property-decorator": "^8.2.2", | ||
"vue-router": "^3.1.3", | ||
"vue-style-loader": "^4.1.2", | ||
"vue-template-compiler": "^2.6.10", | ||
"vuex": "^3.1.1", | ||
"vuex-class": "^0.3.2", | ||
"webpack": "^4.41.1", | ||
"webpack-bundle-analyzer": "^3.5.2", | ||
"webpack-cli": "^3.3.9", | ||
"webpack-dev-server": "^3.8.2" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "7.x", | ||
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"lint-staged": { | ||
"(src|site)/**/*.{js,ts,tsx,vue}": [ | ||
"npm run lint", | ||
"git add" | ||
], | ||
"(src|site)/**/*.{vue,htm,html,css,less}": [ | ||
"npm run stylelint", | ||
"git add" | ||
] | ||
} | ||
} |
@@ -1,1 +0,1 @@ | ||
# thin-ui | ||
# Thin-UI |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
103694
63
1896
2
2
72
3
+ Added@babel/runtime@7.x
+ Added@babel/runtime@7.26.0(transitive)
+ Added@vue/babel-helper-vue-jsx-merge-props@1.4.0(transitive)
+ Addedregenerator-runtime@0.14.1(transitive)