-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "misbehave",
"version": "0.3.0",
"description": "Add IDE-like text entry to HTML contenteditable tags",
"main": "misbehave.js",
"scripts": {
"start": "rollup --config --watch",
"test": "mocha --require reify behaviors/*/tests.js"
},
"keywords": [
"contenteditable",
"editor",
"editor-ish",
"formatting",
"IDE",
"js",
"vanilla"
],
"author": "Patrik Johnson <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "3.5.0",
"mocha": "3.2.0",
"reify": "0.4.4",
"rollup": "0.41.4",
"rollup-plugin-buble": "0.15.0",
"rollup-plugin-commonjs": "7.0.0",
"rollup-plugin-filesize": "1.0.1",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-watch": "3.2.2"
},
"dependencies": {
"combokeys": "2.4.6",
"undo-manager": "1.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitbot/misbehave.git"
},
"bugs": {
"url": "https://github.com/orbitbot/misbehave/issues"
},
"homepage": "https://github.com/orbitbot/misbehave#readme"
}