forked from amweiss/angular-diff-match-patch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 KB
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
{
"name": "angular-diff-match-patch",
"author": "Adam Weiss <cseadam@gmail.com>",
"license": "MIT",
"version": "0.6.10",
"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.*",
"diff-match-patch": "^1.*"
},
"files": [
"index.js",
"angular-diff-match-patch.js"
],
"scripts": {
"start": "http-server",
"pretest": "npm 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.conf.js",
"release": "standard-version"
},
"devDependencies": {
"angular-mocks": "^1.*",
"http-server": "^0.10",
"jasmine-core": "^2.*",
"karma": "^1.*",
"karma-coverage": "^1.*",
"karma-jasmine": "^1.*",
"karma-junit-reporter": "^1.*",
"karma-phantomjs-launcher": "^1.*",
"phantomjs-prebuilt": "^2.*",
"standard-version": "^4.*",
"xo": "^0.18.2"
},
"xo": {
"esnext": false,
"rules": {
"capitalized-comments": 0
},
"env": [
"jasmine",
"browser",
"phantomjs"
],
"globals": [
"angular",
"DIFF_INSERT",
"DIFF_DELETE",
"DIFF_EQUAL",
"diff_match_patch"
]
}
}