forked from bertspaan/node-diff-utility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "diff-utility",
"version": "0.5.0",
"description": "Calls diff utility and outputs differences as JS objects",
"main": "index.js",
"scripts": {
"test": "jshint index.js diff2js.js test && jscs index.js diff2js.js test && tape test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/histograph/node-diff-utility"
},
"keywords": [
"diff"
],
"author": "Bert Spaan",
"license": "MIT",
"bugs": {
"url": "https://github.com/histograph/node-diff-utility/issues"
},
"homepage": "https://github.com/histograph/node-diff-utility",
"dependencies": {
"highland": "^2.5.1",
"split2": "^0.2.1",
"through2": "^0.6.3"
},
"devDependencies": {
"jscs": "^1.10.0",
"jshint": "^2.6.0",
"tape": "^3.4.0"
},
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
}
}