-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 872 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 872 Bytes
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
{
"name": "sharedb-string-binding",
"version": "1.0.0",
"description": "Two-way bind json0 string operations in a ShareDB doc to an HTML text input or textarea",
"repository": {
"type": "git",
"url": "git://github.com/share/sharedb-string-binding.git"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "node_modules/.bin/mocha && npm run lint",
"test-cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha && npm run lint"
},
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^2.13.0",
"eslint-config-xo": "^0.14.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"sharedb": "^1.0.0-beta"
},
"directories": {
"test": "test"
},
"author": "Nate Smith",
"license": "MIT",
"dependencies": {
"text-diff-binding": "^1.0.0"
}
}