forked from slab/delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "quill-delta",
"version": "4.2.2",
"description": "Format for representing rich text documents and changes.",
"author": "Jason Chen <[email protected]>",
"homepage": "https://github.com/quilljs/delta",
"main": "dist/Delta.js",
"dependencies": {
"fast-diff": "^1.2.0",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@types/fast-diff": "^1.2.0",
"@types/lodash-es": "^4.17.3",
"@types/lodash.clonedeep": "^4.5.0",
"@types/lodash.isequal": "^4.5.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"istanbul": "~0.4.5",
"jasmine": "^3.5.0",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
},
"files": [
"tsconfig.json",
"dist",
"src"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint 'src/**/*.ts'",
"test": "npm run build; jasmine test/*.js test/**/*.js",
"test:coverage": "istanbul cover jasmine test/*.js test/**/*.js",
"test:coverage:report": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "https://github.com/quilljs/delta"
},
"bugs": {
"url": "https://github.com/quilljs/delta/issues"
},
"keywords": [
"rich text",
"ot",
"operational transform",
"delta"
]
}