Files
yjs/package.json

79 lines
1.9 KiB
JSON
Raw Normal View History

{
2015-01-26 23:24:50 +00:00
"name": "yjs",
2016-02-23 11:27:30 +01:00
"version": "0.8.28",
2015-06-15 14:53:02 +02:00
"description": "A framework for real-time p2p shared editing on arbitrary complex data types",
2016-01-09 21:08:02 +01:00
"main": "./src/y.js",
"scripts": {
"test": "node --harmony ./node_modules/.bin/gulp test",
"lint": "./node_modules/.bin/standard"
},
2015-06-16 14:36:00 +02:00
"pre-commit": [
"lint",
"test"
2015-06-16 14:36:00 +02:00
],
2015-07-21 17:14:03 +02:00
"standard": {
"parser": "babel-eslint",
"ignore": [
"build/**",
"dist/**",
"declarations/**",
2015-07-21 17:14:03 +02:00
"./y.js",
"./y.js.map"
]
},
"repository": {
"type": "git",
2015-06-15 14:53:02 +02:00
"url": "https://github.com/y-js/yjs.git"
},
"keywords": [
"OT",
2015-06-15 14:53:02 +02:00
"Operational Transformation",
2014-08-04 14:20:51 +02:00
"collaboration",
2014-08-09 00:31:30 +02:00
"synchronization",
2015-06-15 14:53:02 +02:00
"ShareJs",
"OpenCoweb",
2014-08-09 00:31:30 +02:00
"concurrency"
],
"author": "Kevin Jahns",
2014-08-12 19:13:42 +02:00
"email": "kevin.jahns@rwth-aachen.de",
2014-08-09 00:31:30 +02:00
"license": "MIT",
"bugs": {
2015-06-15 14:53:02 +02:00
"url": "https://github.com/y-js/yjs/issues"
2014-08-12 19:13:42 +02:00
},
2015-06-15 14:53:02 +02:00
"homepage": "http://y-js.org",
"devDependencies": {
2015-11-13 16:09:40 +01:00
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
2015-11-06 16:16:38 +01:00
"browserify": "^12.0.1",
"eslint": "^1.10.2",
2015-06-15 14:53:02 +02:00
"gulp": "^3.9.0",
2015-10-30 15:30:02 +01:00
"gulp-bump": "^1.0.0",
2015-09-17 00:21:01 +02:00
"gulp-concat": "^2.6.0",
2015-10-30 15:30:02 +01:00
"gulp-filter": "^3.0.1",
"gulp-git": "^1.6.0",
2015-11-06 16:16:38 +01:00
"gulp-if": "^2.0.0",
2015-06-15 14:53:02 +02:00
"gulp-jasmine": "^2.0.1",
2015-09-17 00:21:01 +02:00
"gulp-jasmine-browser": "^0.2.3",
2015-10-30 15:30:02 +01:00
"gulp-load-plugins": "^1.0.0",
2015-11-05 15:53:26 +01:00
"gulp-prompt": "^0.1.2",
2015-11-05 16:55:03 +01:00
"gulp-rename": "^1.2.2",
2015-11-04 16:53:02 +01:00
"gulp-serve": "^1.2.0",
2015-11-04 14:32:04 +01:00
"gulp-shell": "^0.5.1",
2015-06-15 14:53:02 +02:00
"gulp-sourcemaps": "^1.5.2",
2015-10-30 15:30:02 +01:00
"gulp-tag-version": "^1.3.0",
"gulp-uglify": "^1.5.1",
2015-09-17 00:21:01 +02:00
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"minimist": "^1.2.0",
"pre-commit": "^1.1.1",
"regenerator": "^0.8.42",
2015-11-06 16:16:38 +01:00
"run-sequence": "^1.1.4",
"standard": "^5.2.2",
"vinyl-buffer": "^1.0.0",
2016-01-11 15:48:10 +01:00
"vinyl-source-stream": "^1.1.0",
2016-01-11 15:47:24 +01:00
"babel-eslint": "^5.0.0-beta6"
2016-01-11 15:48:10 +01:00
},
"dependencies": {}
}