-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.26 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.26 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
82
83
84
85
86
87
88
89
{
"name": "diff-match-patch-ts",
"version": "0.8.0",
"description": "Port of diff-match-patch to TypeScript.",
"exports": {
"import": {
"types": "./index.d.ts",
"default": "./diff-match-patch-ts.mjs"
},
"require": {
"types": "./index.d.ts",
"default": "./diff-match-patch-ts.cjs"
}
},
"main": "diff-match-patch-ts.cjs",
"module": "diff-match-patch-ts.mjs",
"browser": "diff-match-patch-ts.umd.js",
"types": "index.d.ts",
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.mjs && copyfiles package.json README.md LICENSE.md dist",
"test": "jest",
"lint": "eslint .",
"release": "standard-version",
"npmpublish": "cd dist && npm publish",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "https://github.com/rars/diff-match-patch-ts"
},
"keywords": [
"diff",
"match",
"patch"
],
"author": "Richard Russell",
"license": "MIT",
"bugs": {
"url": "https://github.com/rars/diff-match-patch-ts/issues"
},
"homepage": "https://github.com/rars/diff-match-patch-ts#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jasmine": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.17.0",
"babel-jest": "^30.2.0",
"copyfiles": "^2.4.1",
"core-js": "^3.7.0",
"cz-conventional-changelog": "^3.3.0",
"globals": "^17.3.0",
"husky": "^9.0.11",
"jasmine": "^6.0.0",
"jasmine-core": "^6.0.1",
"jest": "^30.2.0",
"jsdom": "^28.0.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"rollup": "^4.12.1",
"standard-version": "^9.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "~5.9.0",
"typescript-eslint": "^8.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"skip": {
"commit": true,
"tag": true,
"bump": true
}
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/dist"
]
}
}