forked from fiduswriter/diffDOM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "diff-dom",
"version": "3.1.0",
"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": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"lint": "eslint src/",
"transpile": "rollup -c",
"postversion": "echo remember to run 'git push --follow-tags'",
"prepare": "npm run lint && npm run transpile"
},
"repository": {
"type": "git",
"url": "git://github.com/fiduswriter/diffDOM.git"
},
"author": "Johannes Wilm mail@johanneswilm.org",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/fiduswriter/diffDOM/issues"
},
"homepage": "https://github.com/fiduswriter/diffDOM",
"keywords": [
"diff",
"dom"
],
"dependencies": {
"rollup-plugin-terser": "^4.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"eslint": "^5.12.1",
"jest": "^24.0.0",
"rollup": "^1.1.2",
"rollup-plugin-buble": "^0.19.6",
"slimdom": "^2.2.1"
}
}