task-lists-element/package.json

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

2018-04-26 01:58:53 +03:00
{
"name": "@github/task-lists-element",
"version": "0.0.0-development",
2018-04-26 01:58:53 +03:00
"description": "Drag and drop task list items.",
"repository": "github/task-lists-element",
"main": "dist/task-lists-element.js",
"module": "dist/task-lists-element.js",
2020-05-21 21:55:46 +03:00
"type": "module",
"types": "dist/task-lists-element.d.ts",
2018-04-26 01:58:53 +03:00
"scripts": {
"clean": "rm -rf dist",
2020-05-26 23:01:59 +03:00
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
2020-05-23 00:52:44 +03:00
"prebuild": "npm run clean && npm run lint",
"build": "tsc && rollup -c",
2018-04-26 01:58:53 +03:00
"pretest": "npm run build",
2020-05-21 21:55:46 +03:00
"test": "karma start test/karma.config.cjs",
2019-08-06 15:52:00 +03:00
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
2018-04-26 01:58:53 +03:00
},
"keywords": [
"task",
"drag-and-drop"
],
"license": "MIT",
"files": [
2020-05-21 21:55:46 +03:00
"dist"
2018-04-26 01:58:53 +03:00
],
2020-05-21 21:55:46 +03:00
"prettier": "@github/prettier-config",
2018-04-26 01:58:53 +03:00
"devDependencies": {
2020-05-21 21:55:46 +03:00
"@github/prettier-config": "0.0.4",
2021-05-04 12:22:03 +03:00
"chai": "^4.3.4",
2022-02-17 02:23:54 +03:00
"chromium": "^3.0.3",
2021-08-31 11:15:14 +03:00
"eslint": "^7.32.0",
"eslint-plugin-custom-elements": "^0.0.2",
2021-08-31 11:15:14 +03:00
"eslint-plugin-github": "^4.2.0",
"karma": "^6.3.4",
2018-04-26 01:58:53 +03:00
"karma-chai": "^0.1.0",
2019-11-06 01:33:29 +03:00
"karma-chrome-launcher": "^3.1.0",
2020-05-21 21:55:46 +03:00
"karma-mocha": "^2.0.1",
2018-04-26 01:58:53 +03:00
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.2.0",
2021-08-31 11:15:14 +03:00
"rollup": "^2.56.3",
2020-05-21 21:55:46 +03:00
"rollup-plugin-babel": "^4.4.0",
2021-08-31 11:15:14 +03:00
"typescript": "^4.4.2"
},
"eslintIgnore": [
"dist/"
]
2018-04-26 01:58:53 +03:00
}