forked from slab/delta
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "quill-delta-enhanced",
"version": "0.0.6",
"description": "Format for representing rich text documents and changes. And with DELTA EMBED support.",
"author": "SilentTiger<[email protected]>",
"homepage": "https://github.com/SilentTiger/quill-delta-enhanced",
"main": "dist/Delta.js",
"dependencies": {
"extend": "^3.0.2",
"fast-deep-equal": "^3.1.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/extend": "^3.0.1",
"@types/lodash": "^4.14.149",
"coveralls": "^3.0.9",
"istanbul": "~0.4.5",
"jasmine": "^3.5.0",
"prettier": "^1.19.1",
"seedrandom": "^3.0.5",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0",
"typescript": "^3.7.5"
},
"files": [
"tsconfig.json",
"dist",
"src"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "tslint 'src/**/*.ts'",
"test": "npm run build; jasmine",
"test:coverage": "istanbul cover jasmine",
"test:coverage:report": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "https://github.com/SilentTiger/quill-delta-enhanced"
},
"bugs": {
"url": "https://github.com/SilentTiger/quill-delta-enhanced/issues"
},
"keywords": [
"rich text",
"ot",
"operational transform",
"delta"
]
}