-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 843 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 843 Bytes
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
{
"name": "daff",
"version": "1.4.2",
"description": "Diff and patch tables",
"url": "https://github.com/paulfitz/daff",
"devDependencies": {
"tmp": "0.x.x"
},
"keywords": [
"table",
"diff",
"patch",
"merge"
],
"repository": {
"type": "git",
"url": "git://github.com/paulfitz/daff.git"
},
"bugs": {
"url": "https://github.com/paulfitz/daff/issues"
},
"author": {
"name": "Paul Fitzpatrick",
"email": "paulfitz@alum.mit.edu",
"url": "http://paulfitz.github.io/"
},
"scripts": {
"prepare": "make js",
"prepublishOnly": "make js",
"test": "make test"
},
"main": "lib/daff.js",
"license": "MIT",
"bin": "bin/daff.js",
"files": [
"lib/",
"bin/",
"README.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
}
}