clipboard-copy-element/package.json

47 строки
1.3 KiB
JSON
Исходник Обычный вид История

2018-02-28 01:20:01 +03:00
{
"name": "@github/clipboard-copy-element",
2020-01-20 19:28:38 +03:00
"version": "1.1.2",
2018-02-28 01:20:01 +03:00
"description": "Copy element text content or input values to the clipboard.",
"repository": "github/clipboard-copy-element",
2020-05-21 23:10:07 +03:00
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
2018-02-28 01:20:01 +03:00
"scripts": {
"clean": "rm -rf dist",
2020-05-23 00:21:48 +03:00
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
2020-05-22 22:39:16 +03:00
"prebuild": "npm run clean && npm run lint",
"build": "tsc && rollup -c",
2018-04-17 23:10:02 +03:00
"pretest": "npm run build",
2020-05-21 23:10:07 +03:00
"test": "karma start test/karma.config.cjs",
2019-08-08 13:20:58 +03:00
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
2018-02-28 01:20:01 +03:00
},
2018-03-28 22:11:08 +03:00
"keywords": [
"clipboard"
],
2018-02-28 01:20:01 +03:00
"license": "MIT",
2018-03-28 22:11:08 +03:00
"files": [
2020-05-21 23:10:07 +03:00
"dist"
2018-03-28 22:11:08 +03:00
],
2020-05-21 23:10:07 +03:00
"prettier": "@github/prettier-config",
2018-02-28 01:20:01 +03:00
"devDependencies": {
2020-05-21 23:10:07 +03:00
"@github/prettier-config": "0.0.4",
2019-01-07 23:35:11 +03:00
"chai": "^4.2.0",
2022-01-29 03:53:56 +03:00
"chromium": "^3.0.3",
2020-05-21 23:10:07 +03:00
"eslint": "^6.8.0",
2020-05-23 00:21:48 +03:00
"eslint-plugin-github": "^4.0.0",
"karma": "^6.3.16",
2018-04-17 23:10:02 +03:00
"karma-chai": "^0.1.0",
2019-10-08 17:51:23 +03:00
"karma-chrome-launcher": "^3.1.0",
2020-05-21 23:10:07 +03:00
"karma-mocha": "^2.0.1",
2018-04-17 23:10:02 +03:00
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.1.0",
2020-05-21 23:10:07 +03:00
"rollup": "^1.32.1",
"typescript": "^3.9.3"
2019-02-25 12:43:01 +03:00
},
"eslintIgnore": [
"dist/"
]
2018-02-28 01:20:01 +03:00
}