Files
yjs/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

{
2015-01-26 23:24:50 +00:00
"name": "yjs",
2017-06-30 09:16:58 -07:00
"version": "13.0.0-0",
2016-09-20 19:12:41 +02:00
"description": "A framework for real-time p2p shared editing on any data",
2016-01-09 21:08:02 +01:00
"main": "./src/y.js",
"scripts": {
2017-05-16 18:35:30 +02:00
"lint": "standard",
2017-05-19 02:21:50 +02:00
"dist": "rollup -c rollup.dist.js",
"serve": "concurrently 'serve ..' 'rollup -wc rollup.dist.js -o examples/bower_components/yjs/y.js'"
},
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": {
"ignore": [
"./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": [
"Yjs",
"OT",
"Collaboration",
"Synchronization",
"ShareJS",
"Coweb",
"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": {
2017-05-16 18:35:30 +02:00
"babel-cli": "^6.24.1",
2017-06-16 01:04:16 +02:00
"babel-preset-latest": "^6.24.1",
2017-05-16 18:35:30 +02:00
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
2017-06-07 21:43:39 +02:00
"chance": "^1.0.9",
2017-05-19 02:21:50 +02:00
"concurrently": "^3.4.0",
2017-05-16 18:35:30 +02:00
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
2017-05-19 02:21:50 +02:00
"rollup-plugin-inject": "^2.0.0",
2017-05-16 18:35:30 +02:00
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"rollup-regenerator-runtime": "^6.23.1",
"rollup-watch": "^3.2.2",
"standard": "^10.0.2"
},
"dependencies": {
2017-06-16 01:04:16 +02:00
"debug": "^2.6.8"
2016-09-20 19:12:41 +02:00
}
}