quote-selection/package.json

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

2018-07-06 05:26:39 +03:00
{
"name": "@github/quote-selection",
"description": "Add selected text to a text area as a markdown quote.",
2024-06-04 20:43:06 +03:00
"version": "2.0.0",
"main": "dist/umd/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
2018-07-06 05:26:39 +03:00
"license": "MIT",
"repository": "github/quote-selection",
"files": [
"dist"
2018-07-06 05:26:39 +03:00
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src/*.ts test/*.js",
"prebuild": "npm run clean && npm run lint",
"build": "tsc && rollup -c",
2018-07-06 05:26:39 +03:00
"pretest": "npm run build",
"test": "karma start karma.config.js",
2019-08-29 15:58:43 +03:00
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
2018-07-06 05:26:39 +03:00
},
2020-04-10 18:21:35 +03:00
"prettier": "@github/prettier-config",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:github/browser",
2023-10-31 23:01:36 +03:00
"plugin:github/recommended",
"plugin:github/typescript"
]
},
2018-07-06 05:26:39 +03:00
"devDependencies": {
2020-04-10 18:21:35 +03:00
"@github/prettier-config": "0.0.4",
2019-02-14 01:27:14 +03:00
"chai": "^4.2.0",
2023-10-31 23:01:36 +03:00
"eslint": "^8.0.1",
"eslint-plugin-github": "^4.10.1",
2020-04-10 18:21:35 +03:00
"karma": "^5.0.1",
2018-07-06 05:26:39 +03:00
"karma-chai": "^0.1.0",
2019-11-06 02:10:47 +03:00
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
2018-07-06 05:26:39 +03:00
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.2.0",
2020-04-10 18:21:35 +03:00
"rollup": "^2.4.0",
"typescript": "^4.4.4"
2019-04-16 20:39:18 +03:00
},
"eslintIgnore": [
"dist/"
2019-04-16 20:39:18 +03:00
]
2018-07-06 05:26:39 +03:00
}