-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "visual-dom-diff",
"version": "0.7.2",
"description": "Highlight differences between two DOM trees.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"!/lib/**/*.test.js",
"!/lib/**/*.test.d.ts"
],
"scripts": {
"clean": "rimraf lib",
"prettier-fix": "prettier \"./src/**/*\" \"./demo/**/*\" \"!./**/*.jpg\" --list-different --write",
"prettier": "prettier \"./src/**/*\" \"./demo/**/*\" \"!./**/*.jpg\" --list-different",
"tslint": "tslint --project .",
"tsc": "tsc -b .",
"test": "jest",
"build": "run-s clean prettier tslint tsc test",
"demo": "webpack -p",
"start": "run-p start:*",
"start:demo": "webpack-dev-server -d",
"start:tsc": "tsc -b -w .",
"preversion": "npm outdated && run-s build demo && git add docs",
"postversion": "git push && git push origin v${npm_package_version}",
"benchmark": "node benchmark"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Teamwork/visual-dom-diff.git"
},
"keywords": [
"visual",
"dom",
"diff"
],
"author": "Greg Kubisa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Teamwork/visual-dom-diff/issues"
},
"homepage": "https://github.com/Teamwork/visual-dom-diff#readme",
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/jsdom": "^12.2.4",
"benchmark": "^2.1.4",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@types/diff-match-patch": "^1.0.32",
"diff-match-patch": "^1.0.4"
}
}