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

78 lines
2.0 KiB
JSON
Raw Normal View History

2020-03-25 16:32:25 +01:00
{
"name": "shareon",
2022-02-02 15:12:35 +01:00
"version": "1.6.3",
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/kytta/shareon.git"
2020-03-25 16:48:11 +01:00
},
"bugs": {
"url": "https://github.com/kytta/shareon/issues"
2020-03-25 16:48:11 +01:00
},
2020-06-26 17:04:15 +02:00
"author": {
"name": "Nikita Karamov",
"email": "me@kytta.dev",
"url": "https://www.kytta.dev"
2020-06-26 17:04:15 +02:00
},
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": {
2021-01-17 20:32:59 +01:00
"build": "rollup --config",
"build:dev": "cross-env NODE_ENV=development rollup --config",
"dev": "cross-env NODE_ENV=development rollup --config --watch",
2021-01-16 22:10:33 +01:00
"lint": "eslint src/*.js",
2021-01-17 20:37:24 +01:00
"release": "np",
2021-01-16 22:10:33 +01:00
"size": "size-limit",
"test": "pnpm run lint && pnpm run build && pnpm run size",
"postversion": "pnpm run 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",
2022-02-02 15:08:38 +01:00
"@rollup/plugin-strip": "^2.1.0",
"@size-limit/preset-small-lib": "^7.0.5",
"autoprefixer": "^10.4.2",
"browserslist": "^4.19.1",
2021-01-17 20:36:20 +01:00
"cross-env": "^7.0.3",
2022-02-02 15:08:38 +01:00
"cssnano": "^5.0.16",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"np": "^7.6.0",
"postcss": "^8.4.6",
"postcss-banner": "^4.0.1",
2022-02-02 15:08:38 +01:00
"postcss-calc": "^8.2.3",
"postcss-css-variables": "^0.18.0",
2022-02-02 15:08:38 +01:00
"postcss-mixins": "^9.0.1",
"rollup": "^2.67.0",
"rollup-plugin-postcss": "^4.0.2",
2021-01-17 09:50:47 +01:00
"rollup-plugin-terser": "^7.0.2",
2022-02-02 15:08:38 +01:00
"size-limit": "^7.0.5"
2020-03-25 22:09:35 +01:00
},
"size-limit": [
2020-07-30 12:09:39 +02:00
{
"limit": "7 KB",
2022-02-02 15:08:38 +01:00
"path": "./dist/shareon.min.css"
2020-07-30 12:09:39 +02:00
},
2020-03-25 22:09:35 +01:00
{
"limit": "1 KB",
2022-02-02 15:08:38 +01:00
"path": "./dist/shareon.mjs"
2020-03-25 22:09:35 +01:00
}
2022-02-02 15:08:38 +01:00
]
2020-03-25 16:32:25 +01:00
}