shareon-pulsanti-condivisio.../package.json

96 lines
2.3 KiB
JSON
Raw Normal View History

2020-03-25 16:32:25 +01:00
{
"name": "shareon",
2020-09-28 14:02:44 +02:00
"version": "1.6.0",
2020-06-26 17:04:15 +02:00
"description": "Lightweight, stylish and ethical share buttons for popular social networks",
"license": "MIT",
2020-03-26 22:01:29 +01:00
"homepage": "https://shareon.js.org",
2020-06-26 17:04:15 +02:00
"keywords": [
"share buttons",
"sharing",
"social networks"
],
2020-03-25 16:48:11 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/NickKaramoff/shareon.git"
},
"bugs": {
"url": "https://github.com/NickKaramoff/shareon/issues"
},
2020-06-26 17:04:15 +02:00
"author": {
"name": "Nikita Karamov",
"email": "nick@karamoff.dev",
"url": "https://karamoff.dev"
},
2020-07-26 14:17:16 +02:00
"main": "./dist/shareon.cjs",
"module": "./dist/shareon.mjs",
"unpkg": "./dist/shareon.min.js",
"exports": {
2020-07-26 14:17:16 +02:00
"require": "./dist/shareon.cjs",
"import": "./dist/shareon.mjs"
2020-07-23 19:18:19 +02:00
},
2020-06-26 17:04:15 +02:00
"files": [
2020-07-26 14:17:16 +02:00
"dist"
2020-06-26 17:04:15 +02:00
],
2020-03-25 17:44:11 +01:00
"scripts": {
"build": "gulp",
"build:dev": "cross-env NODE_ENV=development gulp",
"dev": "cross-env NODE_ENV=development gulp dev",
2020-03-29 23:48:54 +02:00
"pretest": "run-s build",
2020-07-31 18:57:02 +02:00
"test:lint": "eslint --ext .js,.ts ./src/",
2020-03-25 22:09:35 +01:00
"test:size": "size-limit",
2020-03-29 23:48:54 +02:00
"test": "run-p test:*",
"postversion": "run-s build"
2020-03-25 17:44:11 +01:00
},
"devDependencies": {
2020-07-31 18:57:02 +02:00
"@nickkaramoff/rollup-plugin-consts": "^1.1.0",
"@rollup/plugin-buble": "^0.21.3",
2020-07-30 12:23:54 +02:00
"@rollup/plugin-strip": "^2.0.0",
2020-07-30 12:09:39 +02:00
"@rollup/plugin-typescript": "^5.0.2",
"@size-limit/preset-small-lib": "^4.5.5",
2020-09-22 15:23:04 +02:00
"autoprefixer": "^9.8.6",
"browserslist": "^4.14.3",
"cross-env": "^7.0.2",
2020-03-25 18:53:00 +01:00
"cssnano": "^4.1.10",
2020-07-30 12:18:27 +02:00
"eslint": "^7.5.0",
2020-06-26 15:45:37 +02:00
"eslint-config-airbnb-base": "^14.2.0",
2020-07-30 12:18:27 +02:00
"eslint-plugin-import": "^2.22.0",
"gulp": "^4.0.2",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
2020-07-30 12:18:27 +02:00
"np": "^6.3.2",
2020-03-25 17:44:11 +01:00
"npm-run-all": "^4.1.5",
"postcss-banner": "^3.0.2",
2020-07-31 18:57:02 +02:00
"postcss-calc": "^7.0.2",
"postcss-css-variables": "^0.17.0",
"postcss-mixins": "^6.2.3",
2020-07-30 12:18:27 +02:00
"rollup": "^2.23.0",
"rollup-plugin-license": "^2.1.0",
"rollup-plugin-terser": "^6.1.0",
2020-07-31 18:57:02 +02:00
"size-limit": "^4.5.5"
2020-03-25 22:09:35 +01:00
},
"size-limit": [
2020-07-30 12:09:39 +02:00
{
"limit": "7 KB",
"path": "./dist/shareon.min.css",
"webpack": false
},
2020-03-25 22:09:35 +01:00
{
"limit": "1 KB",
2020-07-26 14:17:16 +02:00
"path": "./dist/shareon.min.js",
2020-03-25 22:09:35 +01:00
"webpack": false
},
{
"limit": "1 KB",
2020-07-26 14:17:16 +02:00
"path": [
"./dist/shareon.cjs"
]
2020-03-25 22:45:38 +01:00
},
{
2020-07-30 12:09:39 +02:00
"limit": "1 KB",
"path": [
"./dist/shareon.mjs"
]
2020-03-25 22:09:35 +01:00
}
]
2020-03-25 16:32:25 +01:00
}