2020-03-25 11:32:25 -04:00
|
|
|
{
|
|
|
|
"name": "shareon",
|
2020-03-26 17:56:50 -04:00
|
|
|
"version": "1.1.0",
|
2020-03-26 17:01:29 -04:00
|
|
|
"homepage": "https://shareon.js.org",
|
2020-03-25 11:48:11 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/NickKaramoff/shareon.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/NickKaramoff/shareon/issues"
|
|
|
|
},
|
2020-03-25 11:32:25 -04:00
|
|
|
"license": "MIT",
|
2020-03-25 11:36:41 -04: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 17:17:28 -04:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
|
|
|
],
|
2020-03-25 17:10:07 -04:00
|
|
|
"main": "./dist/shareon.cjs",
|
|
|
|
"exports": {
|
2020-03-25 17:51:16 -04:00
|
|
|
"require": "./dist/shareon.cjs"
|
2020-03-25 17:10:07 -04:00
|
|
|
},
|
|
|
|
"unpkg": "./dist/shareon.min.js",
|
2020-03-25 12:44:11 -04:00
|
|
|
"scripts": {
|
|
|
|
"build": "rollup -c ./rollup/rollup.config.prod.js",
|
|
|
|
"dev": "rollup -w -c ./rollup/rollup.config.dev.js",
|
|
|
|
"pretest": "run-p build",
|
2020-03-25 17:09:35 -04:00
|
|
|
"test:lint": "eslint-ci --ext .js,.ts ./src/",
|
|
|
|
"test:size": "size-limit",
|
2020-03-25 12:44:11 -04:00
|
|
|
"test": "run-p test:*"
|
|
|
|
},
|
2020-03-25 11:36:41 -04:00
|
|
|
"dependencies": {},
|
2020-03-25 12:44:11 -04:00
|
|
|
"devDependencies": {
|
|
|
|
"@rollup/plugin-strip": "^1.3.2",
|
|
|
|
"@rollup/plugin-typescript": "^4.0.0",
|
2020-03-25 17:09:35 -04:00
|
|
|
"@size-limit/preset-small-lib": "^4.4.1",
|
2020-03-25 12:44:11 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.24.0",
|
2020-03-25 13:53:00 -04:00
|
|
|
"cssnano": "^4.1.10",
|
2020-03-25 12:44:11 -04:00
|
|
|
"eslint": "^6.8.0",
|
2020-03-25 17:09:35 -04:00
|
|
|
"eslint-ci": "^1.0.0",
|
2020-03-25 12:44:11 -04:00
|
|
|
"eslint-config-airbnb-typescript": "^7.2.0",
|
|
|
|
"eslint-plugin-import": "^2.20.1",
|
2020-03-25 13:53:00 -04:00
|
|
|
"node-sass": "^4.13.1",
|
2020-03-25 12:44:11 -04:00
|
|
|
"np": "^6.2.0",
|
|
|
|
"npm-run-all": "^4.1.5",
|
2020-03-25 13:53:00 -04:00
|
|
|
"rollup": "^1.32.1",
|
2020-03-25 14:09:56 -04:00
|
|
|
"rollup-plugin-banner": "^0.2.1",
|
2020-03-25 13:53:00 -04:00
|
|
|
"rollup-plugin-postcss": "^2.5.0",
|
2020-03-25 12:44:11 -04:00
|
|
|
"rollup-plugin-terser": "^5.3.0",
|
2020-03-25 17:09:35 -04:00
|
|
|
"size-limit": "^4.4.1",
|
2020-03-25 12:44:11 -04:00
|
|
|
"typescript": "^3.8.3"
|
2020-03-25 17:09:35 -04:00
|
|
|
},
|
|
|
|
"size-limit": [
|
|
|
|
{
|
|
|
|
"limit": "1 KB",
|
|
|
|
"path": "./dist/shareon.min.js",
|
|
|
|
"webpack": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"limit": "1 KB",
|
2020-03-25 17:12:58 -04:00
|
|
|
"path": [
|
2020-03-25 17:51:16 -04:00
|
|
|
"./dist/shareon.cjs"
|
2020-03-25 17:12:58 -04:00
|
|
|
]
|
2020-03-25 17:45:38 -04:00
|
|
|
},
|
|
|
|
{
|
2020-03-25 19:07:55 -04:00
|
|
|
"limit": "7 KB",
|
2020-03-25 17:52:30 -04:00
|
|
|
"path": "./dist/shareon.min.css",
|
2020-03-25 17:45:38 -04:00
|
|
|
"webpack": false
|
2020-03-25 17:09:35 -04:00
|
|
|
}
|
|
|
|
]
|
2020-03-25 11:32:25 -04:00
|
|
|
}
|