Files
yjs/package.json

69 lines
2.0 KiB
JSON
Raw Normal View History

{
2015-01-26 23:24:50 +00:00
"name": "yjs",
2019-08-20 22:29:56 +02:00
"version": "13.0.0-96",
2019-04-27 03:35:44 +02:00
"description": "Shared Editing Library",
2019-03-01 23:26:40 +01:00
"main": "./dist/yjs.js",
2019-05-19 21:48:09 +02:00
"module": "./dist/yjs.mjs",
2018-11-25 22:39:30 +01:00
"sideEffects": false,
"scripts": {
"test": "npm run dist && PRODUCTION=1 node ./dist/tests.js --repitition-time 50 --production",
2019-03-10 23:26:53 +01:00
"test-exhaustive": "npm run lint && npm run dist && node ./dist/tests.js --repitition-time 10000",
2019-05-22 17:32:51 +02:00
"dist": "rm -rf dist && rollup -c",
2018-11-25 03:17:00 +01:00
"watch": "rollup -wc",
2019-09-04 13:05:03 +02:00
"lint": "markdownlint README.md && standard && tsc",
"docs": "rm -rf docs; jsdoc --configure ./.jsdoc.json --verbose --readme ./README.md --package ./package.json || true",
2018-03-06 03:17:36 +01:00
"serve-docs": "npm run docs && serve ./docs/",
"preversion": "npm run lint && PRODUCTION=1 npm run dist && npm run docs && node ./dist/tests.js --repitition-time 1000",
2019-04-23 20:51:32 +02:00
"postversion": "git push && git push --tags",
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"
},
2017-07-05 17:01:21 +02:00
"files": [
2019-03-01 23:26:40 +01:00
"dist/*",
2019-04-27 03:35:44 +02:00
"src/*",
"tests/*",
2019-04-28 17:27:36 +02:00
"docs/*"
2015-06-16 14:36:00 +02:00
],
2018-11-25 22:39:30 +01:00
"dictionaries": {
"doc": "docs",
2019-03-01 23:26:40 +01:00
"test": "tests"
},
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-05-22 17:32:51 +02:00
"/docs"
2015-07-21 17:14:03 +02:00
]
},
"repository": {
"type": "git",
2019-09-04 13:05:03 +02:00
"url": "https://github.com/yjs/yjs.git"
},
"keywords": [
2018-11-25 22:39:30 +01:00
"crdt"
],
"author": "Kevin Jahns",
2019-09-04 13:05:03 +02:00
"email": "kevin.jahns@protonmail.com",
2014-08-09 00:31:30 +02:00
"license": "MIT",
"bugs": {
2019-09-04 13:05:03 +02:00
"url": "https://github.com/yjs/yjs/issues"
2014-08-12 19:13:42 +02:00
},
2019-09-04 13:05:03 +02:00
"homepage": "https://yjs.dev",
2019-03-13 01:49:51 +01:00
"dependencies": {
2019-09-04 13:05:03 +02:00
"lib0": "^0.1.0"
2019-03-13 01:49:51 +01:00
},
"devDependencies": {
"concurrently": "^3.6.1",
2019-08-09 01:16:40 +02:00
"jsdoc": "^3.6.3",
2019-03-06 13:29:16 +01:00
"live-server": "^1.2.1",
"rollup": "^1.11.3",
2018-11-25 03:36:06 +01:00
"rollup-cli": "^1.0.9",
"rollup-plugin-node-resolve": "^4.2.4",
2018-11-25 03:17:00 +01:00
"standard": "^11.0.1",
2019-03-13 01:49:51 +01:00
"tui-jsdoc-template": "^1.2.2",
"typescript": "^3.4.5",
"y-protocols": "0.0.6"
2019-03-13 00:22:38 +01:00
}
}