quote-selection/package.json

39 строки
1.2 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-02-08 21:13:03 +03:00
"version": "0.5.1",
2018-07-06 05:26:39 +03:00
"main": "dist/quote-selection.umd.js",
"module": "dist/quote-selection.esm.js",
"license": "MIT",
"repository": "github/quote-selection",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint quote-selection.js test/ && flow check",
"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",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
2018-07-09 23:35:24 +03:00
"babel-preset-es2015-rollup": "^3.0.0",
2018-07-06 05:26:39 +03:00
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
2018-08-22 00:26:57 +03:00
"eslint": "^5.4.0",
"eslint-plugin-github": "^1.2.1",
"flow-bin": "^0.79.1",
"karma": "^3.0.0",
2018-07-06 05:26:39 +03:00
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
2018-07-09 23:35:24 +03:00
"mocha": "^5.0.5",
2018-08-22 00:26:57 +03:00
"rollup": "^0.64.1",
2018-07-09 23:35:24 +03:00
"rollup-plugin-babel": "^3.0.7"
2018-07-06 05:26:39 +03:00
}
}