-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "diff-dom",
"version": "5.1.4",
"description": "A diff for DOM elements, as client-side JavaScript code. Gets all modifications, insertions and removals between two DOM fragments.",
"main": "dist/index.js",
"module": "dist/module.js",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"lint": "eslint src/",
"build": "rollup -c",
"postversion": "echo remember to run 'git push --follow-tags'",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/fiduswriter/diffDOM.git"
},
"author": "Johannes Wilm [email protected]",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/fiduswriter/diffDOM/issues"
},
"homepage": "https://github.com/fiduswriter/diffDOM",
"keywords": [
"diff",
"dom",
"vdom",
"vtree",
"patch",
"browser"
],
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.14.0",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.5.0",
"updates": "^16.0.0"
}
}