-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "y-memory",
"version": "8.0.9",
"description": "Memory database adapter for Yjs",
"main": "./src/Memory.js",
"scripts": {
"test": "node --harmony ./node_modules/.bin/gulp test",
"lint": "./node_modules/.bin/standard"
},
"pre-commit": [
"lint",
"test"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"build/**",
"dist/**",
"./y.js",
"./y.js.map"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/y-js/y-memory.git"
},
"keywords": [
"Yjs",
"OT",
"Collaboration",
"Synchronization",
"ShareJS",
"Coweb",
"Concurrency"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/y-js/yjs/issues"
},
"homepage": "http://y-js.org",
"devDependencies": {
"babel-eslint": "^4.1.4",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-runtime": "^6.1.18",
"babelify": "^7.2.0",
"gulp": "^3.9.0",
"gulp-load-plugins": "^1.1.0",
"gulp-prompt": "^0.1.2",
"pre-commit": "^1.1.2",
"run-sequence": "^1.1.4",
"standard": "^5.3.1"
},
"peerDependencies": {
"yjs": ">= 9.0.0 < 14.0.0"
}
}