UNPKG

issue-pane

Version:

Solid-compatible Panes: issue editor

67 lines (66 loc) 1.54 kB
{ "name": "issue-pane", "version": "2.5.1", "description": "Solid-compatible Panes: issue editor", "main": "./issuePane.js", "scripts": { "build": "echo nothing to build", "lint": "eslint '*.js'", "lint-fix": "eslint '*.js' --fix", "start": "webpack serve --config webpack.dev.config.js --open", "test": "npm run lint", "prepublishOnly": "npm test", "postpublish": "git push origin main --follow-tags" }, "repository": { "type": "git", "url": "https://github.com/solid/issue-pane" }, "keywords": [ "solid", "issue tracker", "decentralized", "web", "rdf", "ldp", "linked", "pane", "app", "data" ], "author": "Tim Berners-Lee <timbl@mit.edu>", "license": "MIT", "bugs": { "url": "https://github.com/solid/issue-pane/issues" }, "homepage": "https://github.com/solid/issue-pane", "dependencies": { "solid-ui": "^2.5.1" }, "devDependencies": { "@eslint/compat": "^1.2.6", "@eslint/eslintrc": "^3.2.0", "@eslint/js": "^9.19.0", "babel-loader": "^10.0.0", "eslint": "^9.19.0", "eslint-plugin-import": "^2.31.0", "globals": "^15.14.0", "html-webpack-plugin": "^5.6.3", "husky": "^9.1.7", "lint-staged": "^15.4.3", "node-polyfill-webpack-plugin": "^4.1.0", "webpack-cli": "^6.0.1", "webpack-dev-server": "^4.15.2" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm test" } }, "lint-staged": { "*.js": [ "eslint" ] } }