-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.02 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
{
"name": "diff-match-patch-ts",
"version": "2.0.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": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^22.17.0",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"globals": "^17.3.0",
"husky": "^9.0.11",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.4.1",
"jsdom": "^29.1.1",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"rollup": "^4.12.1",
"standard-version": "^9.3.2",
"ts-jest": "^29.4.11",
"typescript": "~6.0.3",
"typescript-eslint": "^8.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"skip": {
"commit": true,
"tag": true,
"bump": true
}
}
}