Files
yjs/package.json

77 lines
2.0 KiB
JSON
Raw Normal View History

{
2015-01-26 23:24:50 +00:00
"name": "yjs",
2018-05-08 13:46:27 +02:00
"version": "13.0.0-60",
2016-09-20 19:12:41 +02:00
"description": "A framework for real-time p2p shared editing on any data",
2017-07-06 15:16:13 +02:00
"main": "./y.node.js",
"browser": "./y.js",
"module": "./src/y.js",
"scripts": {
2017-07-05 18:40:41 +02:00
"test": "npm run lint",
"debug": "concurrently 'rollup -wc rollup.test.js' 'cutest-serve y.test.js -o'",
2017-05-16 18:35:30 +02:00
"lint": "standard",
2018-03-23 01:55:47 +01:00
"docs": "esdoc",
2018-03-06 03:17:36 +01:00
"serve-docs": "npm run docs && serve ./docs/",
2017-07-06 15:16:13 +02:00
"dist": "rollup -c rollup.browser.js; rollup -c rollup.node.js",
2017-08-24 14:44:23 +02:00
"watch": "concurrently 'rollup -wc rollup.browser.js' 'rollup -wc rollup.node.js'",
2017-07-05 18:40:41 +02:00
"postversion": "npm run dist",
2017-07-05 17:01:21 +02:00
"postpublish": "tag-dist-files --overwrite-existing-tag"
},
2017-07-05 17:01:21 +02:00
"files": [
2017-11-26 14:39:47 -08:00
"y.*",
2018-03-06 05:22:18 +01:00
"src/*",
2018-04-27 18:33:28 +02:00
".esdoc.json",
"docs/*"
2015-06-16 14:36:00 +02:00
],
2015-07-21 17:14:03 +02:00
"standard": {
"ignore": [
2017-07-05 17:01:21 +02:00
"/y.js",
"/y.js.map"
2015-07-21 17:14:03 +02:00
]
},
"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",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
2017-07-05 17:01:21 +02:00
"babel-preset-latest": "^6.24.1",
2017-06-07 21:43:39 +02:00
"chance": "^1.0.9",
2017-05-19 02:21:50 +02:00
"concurrently": "^3.4.0",
"cutest": "^0.1.9",
2018-03-23 01:55:47 +01:00
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
2018-02-26 02:18:39 +01:00
"quill": "^1.3.5",
2018-02-26 17:15:27 +01:00
"quill-cursors": "^1.0.2",
2018-05-12 16:43:05 +02:00
"rollup": "^0.58.2",
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",
2017-07-05 17:01:21 +02:00
"standard": "^10.0.2",
"tag-dist-files": "^0.1.6"
2016-09-20 19:12:41 +02:00
}
}