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

95 lines
2.3 KiB
JSON
Raw Normal View History

2020-03-25 16:32:25 +01:00
{
"name": "shareon",
2020-07-23 20:20:05 +02:00
"version": "1.3.0-5",
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-23 20:17:00 +02:00
"main": "./index.js",
"module": "./index.mjs",
"unpkg": "./index.js",
"exports": {
2020-07-23 19:26:07 +02:00
"./package.json": "./package.json",
".": {
2020-07-23 20:17:00 +02:00
"browser": "./index.js",
"require": "./index.js",
"import": "./index.mjs"
2020-07-23 19:26:07 +02:00
},
"./noinit": {
2020-07-23 20:17:00 +02:00
"browser": "./noinit/index.js",
"require": "./noinit/index.js",
"import": "./noinit/index.mjs"
2020-07-23 19:26:07 +02:00
}
2020-07-23 19:18:19 +02:00
},
2020-06-26 17:04:15 +02:00
"files": [
2020-07-23 20:17:00 +02:00
"index.js",
"index.mjs",
"noinit/index.js",
"noinit/index.mjs"
2020-06-26 17:04:15 +02:00
],
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",
2020-07-23 20:17:00 +02:00
"path": "./index.js",
2020-03-25 22:09:35 +01:00
"webpack": false
},
{
"limit": "1 KB",
2020-07-23 20:17:00 +02:00
"path": "./index.mjs"
2020-03-25 22:45:38 +01:00
},
{
2020-03-26 00:07:55 +01:00
"limit": "7 KB",
2020-07-23 20:17:00 +02:00
"path": "./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
}