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

81 lines
2.0 KiB
JSON
Raw Normal View History

2020-03-25 16:32:25 +01:00
{
"name": "shareon",
2020-06-25 12:58:27 +02:00
"version": "1.1.3",
2020-03-26 22:01:29 +01:00
"homepage": "https://shareon.js.org",
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-03-25 16:32:25 +01:00
"license": "MIT",
2020-03-25 16:36:41 +01:00
"author": "Nikita Karamov <nick@karamoff.dev>",
"description": "Lightweight, stylish and ethical share buttons for popular social networks",
"keywords": [
"share buttons",
"sharing",
"social networks"
],
2020-03-25 22:17:28 +01:00
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "./dist/shareon.cjs",
"exports": {
"require": "./dist/shareon.cjs"
},
"unpkg": "./dist/shareon.min.js",
2020-03-25 17:44:11 +01:00
"scripts": {
2020-06-26 16:51:13 +02:00
"build": "rollup -c",
"dev": "rollup -w -c",
2020-03-29 23:48:54 +02:00
"pretest": "run-s build",
2020-03-25 22:09:35 +01:00
"test:lint": "eslint-ci --ext .js,.ts ./src/",
"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": {
"@rollup/plugin-strip": "^1.3.3",
"@rollup/plugin-typescript": "^5.0.0",
"@size-limit/preset-small-lib": "^4.5.2",
2020-06-26 15:45:37 +02:00
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
2020-03-25 18:53:00 +01:00
"cssnano": "^4.1.10",
2020-06-26 15:45:37 +02:00
"eslint": "^7.3.1",
2020-03-25 22:09:35 +01:00
"eslint-ci": "^1.0.0",
2020-06-26 15:45:37 +02:00
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.21.2",
"np": "^6.2.4",
2020-03-25 17:44:11 +01:00
"npm-run-all": "^4.1.5",
"postcss-banner": "^3.0.2",
"rollup": "^2.18.0",
"rollup-plugin-license": "^2.1.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-terser": "^6.1.0",
2020-06-26 16:53:54 +02:00
"sass": "^1.26.9",
"size-limit": "^4.5.2",
2020-03-25 17:44:11 +01:00
"typescript": "^3.8.3"
2020-03-25 22:09:35 +01:00
},
"size-limit": [
{
"limit": "1 KB",
"path": "./dist/shareon.min.js",
"webpack": false
},
{
"limit": "1 KB",
2020-03-25 22:12:58 +01:00
"path": [
"./dist/shareon.cjs"
2020-03-25 22:12:58 +01:00
]
2020-03-25 22:45:38 +01:00
},
{
2020-03-26 00:07:55 +01:00
"limit": "7 KB",
2020-03-25 22:52:30 +01:00
"path": "./dist/shareon.min.css",
2020-03-25 22:45:38 +01:00
"webpack": false
2020-03-25 22:09:35 +01:00
}
]
2020-03-25 16:32:25 +01:00
}