-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "sharedb-ace",
"version": "1.0.1",
"description": "ShareDB keybindings for Ace Editor",
"main": "./distribution/sharedb-ace.js",
"repository": "https://github.com/jethrokuan/sharedb-ace",
"author": "Jethro Kuan",
"files": [
"dist",
"distribution"
],
"license": "MIT",
"scripts": {
"build": "npm run build:npm && npm run build:dist",
"build:npm": "babel source --presets babel-preset-latest --out-dir distribution",
"build:dist": "webpack",
"test": "echo 'doing nothing'",
"docs": "jsdoc source/*.js -d ./docs/",
"prepublish": "npm run build"
},
"devDependencies": {
"amd-loader": "^0.0.5",
"assert": "^1.4.1",
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.16.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-json-equal": "^0.0.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jsdom": "^9.10.0",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"webpack": "^1.14.0"
},
"dependencies": {
"event-emitter-es6": "^1.1.5",
"logdown": "^2.0.3",
"reconnecting-websocket": "^4.1.10",
"semantic-release": "^15.13.3",
"sharedb": "^1.0.0-beta.7"
}
}