quote-selection/package.json

49 строки
1.5 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.",
2019-11-06 02:11:05 +03:00
"version": "0.8.4",
2018-07-06 05:26:39 +03:00
"main": "dist/quote-selection.umd.js",
"module": "dist/quote-selection.esm.js",
2019-09-11 15:24:31 +03:00
"types": "index.d.ts",
2018-07-06 05:26:39 +03:00
"license": "MIT",
"repository": "github/quote-selection",
"files": [
2019-09-11 15:24:31 +03:00
"dist",
"index.d.ts"
2018-07-06 05:26:39 +03:00
],
"scripts": {
"clean": "rm -rf dist",
2019-09-12 18:11:43 +03:00
"lint": "github-lint",
2018-07-06 05:26:39 +03:00
"prebuild": "npm run clean && npm run lint && mkdir dist",
2018-08-29 21:54:11 +03:00
"build": "rollup -c && cp quote-selection.js.flow dist/quote-selection.esm.js.flow && cp quote-selection.js.flow dist/quote-selection.umd.js.flow",
2018-07-06 05:26:39 +03:00
"pretest": "npm run build",
"test": "karma start test/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",
2019-04-16 20:39:18 +03:00
"dependencies": {},
2018-07-06 05:26:39 +03:00
"devDependencies": {
2020-04-10 18:21:35 +03:00
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"@github/prettier-config": "0.0.4",
2019-02-14 01:27:14 +03:00
"chai": "^4.2.0",
2020-04-10 18:21:35 +03:00
"eslint": "^6.8.0",
"eslint-plugin-github": "^3.4.1",
"flow-bin": "^0.122.0",
"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",
2018-07-06 05:26:39 +03:00
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
2020-04-10 18:21:35 +03:00
"mocha": "^7.1.1",
"rollup": "^2.4.0",
"rollup-plugin-babel": "^4.4.0"
2019-04-16 20:39:18 +03:00
},
"eslintIgnore": [
"dist/",
"prettier.config.js"
]
2018-07-06 05:26:39 +03:00
}