0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-21 23:03:11 -05:00
Squire/package.json

49 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2014-12-08 04:46:01 -05:00
{
"name": "squire-rte",
2024-08-16 01:02:44 -05:00
"version": "2.3.2",
"description": "Squire is an HTML5 rich text editor, which provides powerful cross-browser normalisation, whilst being supremely lightweight and flexible.",
"main": "dist/squire.mjs",
2023-07-30 21:47:02 -05:00
"types": "dist/types/Squire.d.ts",
"type": "module",
"scripts": {
"test": "jest",
2023-07-30 21:47:02 -05:00
"build": "./build.js && tsc",
"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": {
2024-07-17 00:22:14 -05:00
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.1",
2023-09-19 20:00:36 -05:00
"babel-jest": "^29.7.0",
2024-07-17 00:22:14 -05:00
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
2023-09-19 01:35:11 -05:00
"jest": "^29.7.0",
2023-09-19 20:00:36 -05:00
"jest-environment-jsdom": "^29.7.0",
2024-07-17 00:22:14 -05:00
"prettier": "^3.3.3",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
}
2014-12-08 04:46:01 -05:00
}