-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 974 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 974 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
32
33
34
35
36
37
{
"name": "@teamwork/ot-rich-text",
"version": "8.1.0",
"description": "Format for representing rich-text documents and changes.",
"main": "./lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "mocha",
"test:watch": "mocha -w",
"test:cover": "istanbul cover _mocha",
"preversion": "npm run build && npm test && git add lib",
"postversion": "git push && git push origin v${npm_package_version}"
},
"author": "Greg Kubisa <gkubisa@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Teamwork/ot-rich-text.git"
},
"files": [
"index.js",
"lib/"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"ot-fuzzer": "^1.1.0"
},
"dependencies": {
"fast-diff": "^1.2.0"
}
}