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": {
"test": "node --harmony ./node_modules/.bin/gulp test",
"lint": "./node_modules/.bin/standard",
"build": "./node_modules/.bin/standard build"
},
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/**",
"./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-09-17 00:21:01 +02:00
"babel-eslint": "^4.1.2",
2015-06-15 14:53:02 +02:00
"gulp": "^3.9.0",
2015-09-17 00:21:01 +02:00
"gulp-babel": "^5.2.1",
"gulp-concat": "^2.6.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-06-15 14:53:02 +02:00
"gulp-sourcemaps": "^1.5.2",
2015-09-17 00:21:01 +02:00
"gulp-uglify": "^1.4.1",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"minimist": "^1.2.0",
"pre-commit": "^1.1.1",
2015-10-02 08:01:58 +00:00
"promise-polyfill": "^2.1.0",
"standard": "^5.2.2"
}
}