1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-01 05:16:10 +01:00
slate/package.json

96 lines
2.9 KiB
JSON
Raw Normal View History

2016-06-15 12:07:12 -07:00
{
2016-07-06 17:22:45 -07:00
"name": "slate",
2016-07-20 11:26:39 -07:00
"description": "A completely customizable framework for building rich text editors.",
2016-07-21 12:01:05 -07:00
"version": "0.5.5",
2016-07-06 17:22:45 -07:00
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
2016-07-11 16:44:37 -07:00
"main": "./dist/index.js",
2016-07-06 17:22:45 -07:00
"scripts": {
"clean": "rm -rf ./dist ./node_modules",
"disc": "npm run disc:build && npm run disc:open",
"disc:build": "npm run dist && mkdir -p ./tmp && browserify ./dist/index.js --full-paths --outfile ./tmp/build.js",
"disc:open": "discify ./tmp/build.js --open",
"dist": "npm run dist:npm && npm run dist:bundle",
"dist:bundle": "browserify ./dist/index.js --standalone Slate --outfile ./dist/slate.js",
"dist:npm": "babel --out-dir ./dist ./lib",
"dist:watch": "babel --watch --out-dir ./dist ./lib",
"examples": "browserify --debug --transform babelify ./examples/index.js --outfile ./examples/build.js",
"examples:watch": "watchify --debug --transform babelify ./examples/index.js --outfile ./examples/build.js",
"gh-pages": "gh-pages --dist ./examples",
"lint": "eslint --ignore-pattern 'build.js' '{examples,lib}/**/*.js'",
2016-07-06 20:19:19 -07:00
"prepublish": "make dist",
"start": "http-server ./examples",
"test": "mocha --compilers js:babel-core/register --require source-map-support/register --reporter spec ./test/server.js"
2016-07-06 17:22:45 -07:00
},
2016-06-15 12:07:12 -07:00
"dependencies": {
2016-07-06 20:19:19 -07:00
"cheerio": "^0.20.0",
2016-06-15 12:07:12 -07:00
"detect-browser": "^1.3.3",
"es6-symbol": "^3.1.0",
"esrever": "^0.2.0",
2016-06-15 12:07:12 -07:00
"immutable": "^3.8.1",
"keycode": "^2.1.2",
"lodash": "^4.13.1",
2016-07-13 09:44:43 -07:00
"react-portal": "^2.2.0",
2016-06-16 09:24:18 -07:00
"ua-parser-js": "^0.7.10",
"uid": "0.0.2"
2016-06-15 12:07:12 -07:00
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
2016-06-15 12:07:12 -07:00
"devDependencies": {
2016-06-17 19:57:37 -07:00
"babel-cli": "^6.10.1",
2016-06-15 12:07:12 -07:00
"babel-core": "^6.9.1",
2016-07-06 20:19:19 -07:00
"babel-eslint": "^6.1.0",
2016-06-15 12:07:12 -07:00
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
2016-06-22 18:42:49 -07:00
"component-type": "^1.2.1",
"disc": "^1.3.2",
2016-07-06 20:19:19 -07:00
"eslint": "^3.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-react": "^5.2.2",
2016-06-24 12:13:38 -07:00
"exorcist": "^0.4.0",
"gh-pages": "^0.11.0",
2016-07-11 12:34:22 -07:00
"http-server": "^0.9.0",
"is-image": "^1.0.1",
2016-07-18 13:06:10 -07:00
"is-url": "^1.2.2",
2016-06-15 12:07:12 -07:00
"mocha": "^2.5.3",
"prismjs": "^1.5.1",
"react": "^15.2.0",
2016-07-11 12:34:22 -07:00
"react-addons-perf": "^15.2.1",
2016-06-15 12:07:12 -07:00
"react-dom": "^15.1.0",
2016-06-24 10:22:48 -07:00
"react-router": "^2.5.1",
2016-06-22 18:42:49 -07:00
"read-metadata": "^1.0.0",
2016-06-28 15:47:29 -07:00
"selection-position": "^1.0.0",
"source-map-support": "^0.4.0",
2016-06-22 18:42:49 -07:00
"to-camel-case": "^1.0.0",
2016-06-24 10:22:48 -07:00
"to-title-case": "^1.0.0",
2016-07-06 20:19:19 -07:00
"watchify": "^3.7.0"
2016-07-06 17:22:45 -07:00
},
"keywords": [
"canvas",
"contenteditable",
"doc",
"docs",
"document",
"edit",
"editor",
"html",
2016-07-12 22:40:32 -07:00
"immutable",
2016-07-06 17:22:45 -07:00
"markdown",
"medium",
"paper",
"react",
"rich",
"rich-text",
"richtext",
"text",
"wysiwyg",
"wysiwym"
]
2016-06-15 12:07:12 -07:00
}