Files
yjs/package.json

70 lines
1.8 KiB
JSON
Raw Normal View History

{
2015-01-26 23:24:50 +00:00
"name": "yjs",
2017-08-13 01:04:37 +02:00
"version": "13.0.0-13",
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",
2017-07-06 15:16:13 +02:00
"dist": "rollup -c rollup.browser.js; rollup -c 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": [
"y.*"
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",
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"
},
"dependencies": {
"debug": "^2.6.8",
"utf-8": "^1.0.0"
2016-09-20 19:12:41 +02:00
}
}