50 строки
1.4 KiB
JSON
50 строки
1.4 KiB
JSON
{
|
|
"name": "@github/task-lists-element",
|
|
"version": "0.0.0-development",
|
|
"description": "Drag and drop task list items.",
|
|
"repository": "github/task-lists-element",
|
|
"main": "dist/task-lists-element.js",
|
|
"module": "dist/task-lists-element.js",
|
|
"type": "module",
|
|
"types": "dist/task-lists-element.d.ts",
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
|
|
"prebuild": "npm run clean && npm run lint",
|
|
"build": "tsc && rollup -c",
|
|
"pretest": "npm run build",
|
|
"test": "karma start test/karma.config.cjs",
|
|
"prepublishOnly": "npm run build",
|
|
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
|
|
},
|
|
"keywords": [
|
|
"task",
|
|
"drag-and-drop"
|
|
],
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"prettier": "@github/prettier-config",
|
|
"devDependencies": {
|
|
"@github/prettier-config": "0.0.4",
|
|
"chai": "^4.3.4",
|
|
"chromium": "^3.0.3",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-custom-elements": "^0.0.2",
|
|
"eslint-plugin-github": "^4.2.0",
|
|
"karma": "^6.3.4",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"mocha": "^10.2.0",
|
|
"rollup": "^2.56.3",
|
|
"rollup-plugin-babel": "^4.4.0",
|
|
"typescript": "^4.4.2"
|
|
},
|
|
"eslintIgnore": [
|
|
"dist/"
|
|
]
|
|
}
|