UNPKG

trix

Version:

A rich text editor for everyday writing

63 lines (62 loc) 1.79 kB
{ "name": "trix", "version": "2.0.0-alpha.0", "description": "A rich text editor for everyday writing", "main": "dist/trix.umd.js", "module": "dist/trix.js", "style": "dist/trix.css", "files": [ "dist/*.css", "dist/*.js" ], "repository": { "type": "git", "url": "git+https://github.com/basecamp/trix.git" }, "keywords": [ "rich text", "wysiwyg", "editor" ], "author": "Basecamp, LLC", "license": "MIT", "bugs": { "url": "https://github.com/basecamp/trix/issues" }, "homepage": "https://trix-editor.org/", "devDependencies": { "@babel/core": "^7.16.0", "@babel/preset-env": "^7.16.4", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-json": "^4.1.0", "babel-eslint": "^10.1.0", "eslint": "^7.32.0", "esm": "^3.2.25", "karma": "5.0.2", "karma-chrome-launcher": "3.1.0", "karma-qunit": "^4.1.2", "karma-sauce-launcher": "^4.3.6", "node-sass": "^6.0.1", "qunit": "2.9.3", "rangy": "^1.3.0", "rollup": "^2.56.3", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-includepaths": "^0.2.4", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^7.0.2", "svgo": "^2.8.0" }, "scripts": { "build-css": "node-sass --functions=./assets/trix/stylesheets/functions assets/trix.scss dist/trix.css", "build-js": "rollup -c", "build-assets": "cp -f assets/*.html dist/", "build": "yarn run build-js && yarn run build-css && yarn run build-assets", "watch": "rollup -c -w", "lint": "eslint .", "pretest": "yarn run lint && yarn run build", "test": "karma start", "postversion": "git push && git push --tags", "release": "yarn test && npm adduser && yarn version && npm publish" }, "dependencies": {} }