Files
yjs/package.json

60 lines
1.3 KiB
JSON
Raw Normal View History

{
2015-01-26 23:24:50 +00:00
"name": "yjs",
2015-06-15 14:53:02 +02:00
"version": "0.6.0",
"description": "A framework for real-time p2p shared editing on arbitrary complex data types",
"main": "y.js",
"scripts": {
2015-06-16 14:36:00 +02:00
"test": "gulp test",
2015-07-21 17:14:03 +02:00
"lint": "standard",
2015-06-16 16:20:38 +02:00
"build": "gulp build"
},
2015-06-16 14:36:00 +02:00
"pre-commit": [
"lint",
2015-06-16 16:20:38 +02:00
"build"
2015-06-16 14:36:00 +02:00
],
2015-07-21 17:14:03 +02:00
"standard": {
"parser": "babel-eslint",
"ignore": [
"build/**",
"./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-07-21 17:14:03 +02:00
"babel-eslint": "^3.1.23",
2015-06-15 14:53:02 +02:00
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-concat": "^2.5.2",
2015-09-11 18:35:32 +02:00
"gulp-ignore": "^1.2.1",
2015-06-15 14:53:02 +02:00
"gulp-jasmine": "^2.0.1",
2015-06-16 14:36:00 +02:00
"gulp-jasmine-browser": "^0.1.3",
2015-06-15 14:53:02 +02:00
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.5",
2015-06-16 14:36:00 +02:00
"gulp-watch": "^4.2.4",
"minimist": "^1.1.1",
2015-07-21 17:14:03 +02:00
"pre-commit": "^1.0.10",
"standard": "^5.0.0-2"
}
}