-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
71 lines (71 loc) · 1.8 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
{
"name": "angular-diff-match-patch",
"author": "Adam Weiss <[email protected]>",
"license": "MIT",
"version": "0.8.13",
"main": "index.js",
"description": "An Angular module to use when dealing with google-diff-match-patch.",
"repository": {
"url": "https://github.com/amweiss/angular-diff-match-patch.git"
},
"dependencies": {
"angular": "^1.8.3",
"diff-match-patch": "^1.0.5"
},
"files": [
"index.js",
"angular-diff-match-patch.js"
],
"scripts": {
"start": "browser-sync start -s",
"pretest": "yarn run lint",
"test": "karma start test/karma.conf.js --single-run",
"lint": "xo ./angular-diff-match-patch.js ./test/diffmatchpatch-spec.js",
"test-watch": "karma start test/karma-watch.conf.js",
"release": "standard-version"
},
"devDependencies": {
"angular-mocks": "1.8.3",
"browser-sync": "3.0.3",
"eslint-plugin-ie11": "1.0.0",
"jasmine-core": "5.4.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-junit-reporter": "2.0.1",
"puppeteer": "23.9.0",
"standard-version": "9.5.0",
"xo": "0.58.0"
},
"xo": {
"plugins": [
"ie11"
],
"rules": {
"capitalized-comments": [
"off"
],
"ie11/no-collection-args": [
"error"
],
"ie11/no-for-in-const": [
"error"
],
"ie11/no-loop-func": [
"warn"
],
"ie11/no-weak-collections": [
"error"
]
},
"globals": [
"angular",
"DIFF_INSERT",
"DIFF_DELETE",
"DIFF_EQUAL",
"diff_match_patch"
]
},
"packageManager": "[email protected]+sha512.af78262d7d125afbfeed740602ace8c5e4405cd7f4735c08feb327286b2fdb2390fbca01589bfd1f50b1240548b74806767f5a063c94b67e431aabd0d86f7774"
}