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

78 lines
1.9 KiB
JSON
Raw Normal View History

2020-03-25 16:32:25 +01:00
{
"name": "shareon",
2020-03-26 01:52:51 +01:00
"version": "1.0.0",
2020-03-25 16:48:11 +01:00
"homepage": "https://os.karamoff.dev/shareon",
"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": {
"build": "rollup -c ./rollup/rollup.config.prod.js",
"dev": "rollup -w -c ./rollup/rollup.config.dev.js",
"pretest": "run-p build",
2020-03-25 22:09:35 +01:00
"test:lint": "eslint-ci --ext .js,.ts ./src/",
"test:size": "size-limit",
2020-03-25 17:44:11 +01:00
"test": "run-p test:*"
},
2020-03-25 16:36:41 +01:00
"dependencies": {},
2020-03-25 17:44:11 +01:00
"devDependencies": {
"@rollup/plugin-strip": "^1.3.2",
"@rollup/plugin-typescript": "^4.0.0",
2020-03-25 22:09:35 +01:00
"@size-limit/preset-small-lib": "^4.4.1",
2020-03-25 17:44:11 +01:00
"@typescript-eslint/eslint-plugin": "^2.24.0",
2020-03-25 18:53:00 +01:00
"cssnano": "^4.1.10",
2020-03-25 17:44:11 +01:00
"eslint": "^6.8.0",
2020-03-25 22:09:35 +01:00
"eslint-ci": "^1.0.0",
2020-03-25 17:44:11 +01:00
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.1",
2020-03-25 18:53:00 +01:00
"node-sass": "^4.13.1",
2020-03-25 17:44:11 +01:00
"np": "^6.2.0",
"npm-run-all": "^4.1.5",
2020-03-25 18:53:00 +01:00
"rollup": "^1.32.1",
2020-03-25 19:09:56 +01:00
"rollup-plugin-banner": "^0.2.1",
2020-03-25 18:53:00 +01:00
"rollup-plugin-postcss": "^2.5.0",
2020-03-25 17:44:11 +01:00
"rollup-plugin-terser": "^5.3.0",
2020-03-25 22:09:35 +01:00
"size-limit": "^4.4.1",
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
}