forked from amweiss/angular-diff-match-patch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "angular-diff-match-patch",
"author": "Adam Weiss <[email protected]>",
"license": "MIT",
"version": "0.2.3",
"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.5.6",
"diff-match-patch": "^1.0.0"
},
"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; exit 0",
"test-watch": "karma start test/karma.conf.js"
},
"devDependencies": {
"angular-mocks": "^1.5.6",
"http-server": "^0.9",
"jasmine-core": "*",
"karma": "^0.13",
"karma-coverage": "^1.0",
"karma-coveralls": "^1.*",
"karma-jasmine": "^1.0",
"karma-phantomjs-launcher": "^1.*",
"phantomjs-prebuilt": "^2.*",
"xo": "^0.15.1"
},
"xo": {
"env": [
"jasmine",
"browser",
"phantomjs"
],
"rules": {
"linebreak-style": [
"error",
"windows"
]
},
"globals": [
"angular",
"DIFF_INSERT",
"DIFF_DELETE",
"DIFF_EQUAL",
"diff_match_patch"
]
}
}