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

93 lines
2.2 KiB
JSON
Raw Normal View History

2020-03-25 16:32:25 +01:00
{
"name": "shareon",
2021-06-29 20:50:50 +02:00
"version": "1.6.2",
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": {
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": "yarn lint && yarn build && yarn size",
"postversion": "yarn 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",
"@rollup/plugin-strip": "^2.0.1",
"@size-limit/preset-small-lib": "^5.0.1",
"autoprefixer": "^10.2.6",
"browserslist": "^4.16.6",
2021-01-17 20:36:20 +01:00
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
2021-01-17 20:36:20 +01:00
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"np": "^7.2.0",
2021-01-17 20:32:59 +01:00
"postcss": "^8.2.4",
"postcss-banner": "^4.0.1",
2021-01-17 20:32:59 +01:00
"postcss-calc": "^8.0.0",
"postcss-css-variables": "^0.18.0",
"postcss-mixins": "^8.1.0",
2021-01-17 09:50:47 +01:00
"rollup": "^2.36.2",
2021-01-17 20:32:59 +01:00
"rollup-plugin-postcss": "^4.0.0",
2021-01-17 09:50:47 +01:00
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^5.0.1"
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
}
2021-01-17 00:04:12 +01:00
],
"dependencies": {}
2020-03-25 16:32:25 +01:00
}