forked from yidafu/x-tree-diff-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.98 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.98 KB
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
{
"name": "@dovyih/x-tree-diff-plus",
"version": "0.1.0",
"description": "A implementation for *X-tree Diff +: An Efficient Change Detection Algorithm for Tree-structured Data*",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/yidafu/x-tree-diff-plus.git"
},
"keywords": [
"x-tree-diff",
"tree-change-detection",
"matching",
"edit-operation"
],
"author": "yidafu (dov-yih)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/yidafu/x-tree-diff-plus/issues"
},
"homepage": "https://github.com/yidafu/x-tree-diff-plus#readme",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"lint": "eslint --ext .ts --fix src/",
"test": "jest",
"ts": "ts-node",
"prepublishOnly": "yarn build",
"doc": "typedoc",
"build": "rm -fr dsit && tsc --build tsconfig.json"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{css,scss}": [
"stylelint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.25",
"@types/md5": "^2.1.33",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"babel-eslint": "10.0.3",
"eslint": "6.6.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-lean-imports": "0.3.3",
"husky": "3.0.9",
"jest": "^24.9.0",
"jest-config": "^24.9.0",
"lint-staged": "^9.5.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typedoc": "^0.17.4",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.7.4"
},
"dependencies": {
"md5": "^2.2.1"
},
"directories": {
"test": "test"
}
}