2014-07-29 21:29:10 +02:00
|
|
|
{
|
2015-01-26 23:24:50 +00:00
|
|
|
"name": "yjs",
|
2019-01-29 01:38:40 +01:00
|
|
|
"version": "13.0.0-78",
|
2018-11-25 22:39:30 +01:00
|
|
|
"description": "A ",
|
2019-03-01 23:26:40 +01:00
|
|
|
"main": "./dist/yjs.js",
|
|
|
|
|
"module": "./dist/yjs.mjs'",
|
2018-11-25 22:39:30 +01:00
|
|
|
"sideEffects": false,
|
2014-07-29 21:29:10 +02:00
|
|
|
"scripts": {
|
2019-03-10 23:26:53 +01:00
|
|
|
"test": "npm run lint && npm run dist && node ./dist/tests.js --repitition-time 50",
|
|
|
|
|
"test-exhaustive": "npm run lint && npm run dist && node ./dist/tests.js --repitition-time 10000",
|
2019-03-01 23:45:09 +01:00
|
|
|
"dist": "rm -rf dist examples/build && PRODUCTION=1 rollup -c",
|
2018-11-25 03:17:00 +01:00
|
|
|
"watch": "rollup -wc",
|
2019-03-01 23:26:40 +01:00
|
|
|
"lint": "standard",
|
2018-11-26 16:05:12 +01:00
|
|
|
"docs": "rm -rf docs; jsdoc --configure ./.jsdoc.json --verbose --readme ./README.v13.md --package ./package.json || true",
|
2018-03-06 03:17:36 +01:00
|
|
|
"serve-docs": "npm run docs && serve ./docs/",
|
2019-03-01 23:45:09 +01:00
|
|
|
"postversion": "npm run dist",
|
2019-03-06 13:29:16 +01:00
|
|
|
"debug": "concurrently 'live-server --port=3443 --entry-file=test.html' 'npm run watch'",
|
|
|
|
|
"trace-deopt": "clear && rollup -c && node --trace-deopt dist/test.js",
|
|
|
|
|
"trace-opt": "clear && rollup -c && node --trace-opt dist/test.js"
|
2014-07-29 21:29:10 +02:00
|
|
|
},
|
2017-07-05 17:01:21 +02:00
|
|
|
"files": [
|
2019-03-01 23:26:40 +01:00
|
|
|
"dist/*",
|
2018-11-25 22:39:30 +01:00
|
|
|
"examples/*",
|
2019-03-01 23:26:40 +01:00
|
|
|
"docs/*",
|
2018-11-25 22:39:30 +01:00
|
|
|
"README.md",
|
|
|
|
|
"LICENSE"
|
2015-06-16 14:36:00 +02:00
|
|
|
],
|
2018-11-25 22:39:30 +01:00
|
|
|
"dictionaries": {
|
|
|
|
|
"doc": "docs",
|
|
|
|
|
"example": "examples",
|
2019-03-01 23:26:40 +01:00
|
|
|
"test": "tests"
|
2018-11-09 01:49:43 +01:00
|
|
|
},
|
2015-07-21 17:14:03 +02:00
|
|
|
"standard": {
|
|
|
|
|
"ignore": [
|
2019-03-01 23:26:40 +01:00
|
|
|
"/dist",
|
2018-11-25 03:17:00 +01:00
|
|
|
"/node_modules",
|
2019-03-01 23:26:40 +01:00
|
|
|
"/docs",
|
|
|
|
|
"/examples/build"
|
2015-07-21 17:14:03 +02:00
|
|
|
]
|
|
|
|
|
},
|
2014-07-29 21:29:10 +02:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2015-06-15 14:53:02 +02:00
|
|
|
"url": "https://github.com/y-js/yjs.git"
|
2014-07-29 21:29:10 +02:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
2018-11-25 22:39:30 +01:00
|
|
|
"crdt"
|
2014-07-29 21:29:10 +02:00
|
|
|
],
|
|
|
|
|
"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",
|
2014-07-29 21:29:10 +02:00
|
|
|
"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",
|
2014-07-29 21:29:10 +02:00
|
|
|
"devDependencies": {
|
2018-10-29 21:58:21 +01:00
|
|
|
"babel-cli": "^6.26.0",
|
2017-05-16 18:35:30 +02:00
|
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
2018-10-29 21:58:21 +01:00
|
|
|
"babel-plugin-transform-regenerator": "^6.26.0",
|
2017-05-16 18:35:30 +02:00
|
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
2017-07-05 17:01:21 +02:00
|
|
|
"babel-preset-latest": "^6.24.1",
|
2019-03-01 23:26:40 +01:00
|
|
|
"codemirror": "^5.42.0",
|
2018-10-29 21:58:21 +01:00
|
|
|
"concurrently": "^3.6.1",
|
2019-03-01 23:26:40 +01:00
|
|
|
"crel": "^3.1.0",
|
2017-07-13 17:42:21 +02:00
|
|
|
"cutest": "^0.1.9",
|
2018-10-29 21:58:21 +01:00
|
|
|
"esdoc": "^1.1.0",
|
2018-03-23 01:55:47 +01:00
|
|
|
"esdoc-standard-plugin": "^1.0.0",
|
2019-03-01 23:26:40 +01:00
|
|
|
"esm": "^3.2.6",
|
2018-11-25 03:17:00 +01:00
|
|
|
"jsdoc": "^3.5.5",
|
2019-03-06 13:29:16 +01:00
|
|
|
"live-server": "^1.2.1",
|
2018-11-06 13:41:05 +01:00
|
|
|
"prosemirror-example-setup": "^1.0.1",
|
|
|
|
|
"prosemirror-schema-basic": "^1.0.0",
|
|
|
|
|
"prosemirror-state": "^1.2.2",
|
|
|
|
|
"prosemirror-view": "^1.6.5",
|
2018-10-29 21:58:21 +01:00
|
|
|
"quill": "^1.3.6",
|
|
|
|
|
"quill-cursors": "^1.0.3",
|
2019-03-01 23:26:40 +01:00
|
|
|
"rollup": "^1.1.2",
|
2018-11-25 03:36:06 +01:00
|
|
|
"rollup-cli": "^1.0.9",
|
2019-03-01 23:26:40 +01:00
|
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
|
|
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
|
|
|
|
"rollup-plugin-terser": "^4.0.4",
|
2018-11-25 03:17:00 +01:00
|
|
|
"rollup-plugin-uglify-es": "0.0.1",
|
2019-03-01 23:26:40 +01:00
|
|
|
"rollup-watch": "^4.3.1",
|
2018-11-25 03:17:00 +01:00
|
|
|
"standard": "^11.0.1",
|
2019-03-04 14:28:18 +01:00
|
|
|
"tui-jsdoc-template": "^1.2.2"
|
2018-10-30 00:51:09 +01:00
|
|
|
},
|
2019-03-04 14:28:18 +01:00
|
|
|
"dependencies": {}
|
2014-07-29 21:29:10 +02:00
|
|
|
}
|