0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 15:23:29 -05:00
Squire/package.json

48 lines
1.4 KiB
JSON
Raw Normal View History

2014-12-08 04:46:01 -05:00
{
"name": "squire-rte",
"version": "2.0.0",
"description": "Squire is an HTML5 rich text editor, which provides powerful cross-browser normalisation, whilst being supremely lightweight and flexible.",
"main": "dist/squire.mjs",
"type": "module",
"scripts": {
"test": "jest",
"build": "./build.js",
"lint": "eslint source",
"fix": "eslint --fix source && prettier --write source"
},
"repository": {
"type": "git",
"url": "https://github.com/neilj/Squire.git"
},
"keywords": [
"wysiwyg",
"editor",
"text",
"html",
"squire"
],
"author": "Neil Jenkins",
"license": "MIT",
"bugs": {
"url": "https://github.com/neilj/Squire/issues"
},
"homepage": "https://github.com/neilj/Squire",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"babel-jest": "^29.3.1",
"esbuild": "^0.16.17",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.2",
"tslib": "^2.0.1",
"typescript": "^4.7.4"
}
2014-12-08 04:46:01 -05:00
}