forked from jethrokuan/sharedb-ace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "@sourceacademy/sharedb-ace",
"version": "2.0.1",
"description": "ShareDB integration with Ace Editor",
"main": "./distribution/sharedb-ace.js",
"repository": "https://github.com/source-academy/sharedb-ace",
"author": "Jethro Kuan",
"files": [
"dist",
"distribution"
],
"license": "MIT",
"scripts": {
"build": "yarn run build:yarn && yarn run build:dist",
"build:yarn": "babel source --out-dir distribution --presets=@babel/preset-env",
"build:dist": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack",
"test": "echo 'doing nothing'",
"docs": "jsdoc source/*.js -d ./docs/"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"amd-loader": "^0.0.8",
"assert": "^2.0.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-json-equal": "^0.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.6.0",
"jsdom": "^16.3.0",
"mocha": "^8.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"event-emitter-es6": "^1.1.5",
"logdown": "^3.3.1",
"reconnecting-websocket": "^4.4.0",
"sharedb": "^1.4.1"
}
}