-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
80 lines (80 loc) · 2.34 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
77
78
79
80
{
"name": "mergely",
"version": "5.3.6",
"description": "A javascript UI for diff/merge",
"license": "(GPL-3.0 OR LGPL-3.0 OR MPL-1.1 OR SEE LICENSE IN LICENSE)",
"author": {
"name": "Jamie Peabody",
"email": "[email protected]",
"url": "https://mergely.com"
},
"homepage": "https://github.com/wickedest/Mergely#readme",
"bugs": {
"url": "https://github.com/wickedest/Mergely/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:wickedest/Mergely.git"
},
"main": "lib/mergely.js",
"files": [
"lib/mergely.js",
"lib/mergely.min.js",
"lib/mergely.css",
"examples",
"README.md",
"LICENSE"
],
"keywords": [
"merge",
"diff",
"myers"
],
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/prompt-cli": "^15.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"babel-loader": "^8.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"chai": "^4.3.4",
"codemirror": "^5.65.12",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^6.5.1",
"git-conventional-commits": "^1.1.0",
"html-webpack-plugin": "^4.5.0",
"http-server": "^14.0.0",
"husky": "^8.0.3",
"karma": "^6.3.11",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"mocha": "^9.1.4",
"semantic-release": "^21.1.2",
"simple-mock": "^0.8.0",
"standard-version": "^9.3.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"worker-loader": "^3.0.8"
},
"scripts": {
"prepare": "husky install",
"build": "npm run test && npm run build:dist",
"build:dist": "rm -rf lib && webpack --config ./webpack.prod.js",
"start": "webpack serve --config webpack.dev.js",
"examples": "http-server ./ -p 3000 -o examples/index.html",
"debug": "karma start --timeout=28000 --no-browsers --single-run=false",
"test": "karma start",
"release": "standard-version -a"
}
}