UNPKG

source-pane

Version:

Solid-compatible Panes: Source editor

61 lines (60 loc) 1.35 kB
{ "name": "source-pane", "version": "2.2.28", "description": "Solid-compatible Panes: Source editor", "main": "src/sourcePane.js", "scripts": { "build": "echo nothing to build", "lint": "eslint 'src/*.js'", "lint-fix": "eslint 'src/*.js' --fix", "test": "jest", "ignore:prepublishOnly": "npm run lint && npm run test", "ignore:postpublish": "git push origin main --follow-tags" }, "repository": { "type": "git", "url": "git+https://github.com/solid/source-pane.git" }, "keywords": [ "solid", "source", "decentralized", "web", "rdf", "ldp", "linked", "pane", "app", "data" ], "author": "Tim Berners-Lee <timbl@mit.edu>", "license": "MIT", "bugs": { "url": "https://github.com/solid/source-pane/issues" }, "homepage": "https://github.com/solid/source-pane", "dependencies": { "solid-ui": "^2.5.1" }, "devDependencies": { "@babel/eslint-parser": "^7.26.5", "@testing-library/dom": "^9.3.4", "eslint": "^8.57.1", "husky": "^8.0.3", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "jest-fetch-mock": "^3.0.3", "lint-staged": "^15.4.3" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm test" } }, "lint-staged": { "*.js": [ "eslint" ] } }