-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 922 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 922 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
{
"name": "native-diff-match-patch",
"homepage": "https://github.com/Floobits/node-native-dmp",
"repository": {
"type": "git",
"url": "git://github.com:Floobits/node-native-dmp.git"
},
"bugs": {
"url": "https://github.com/Floobits/node-native-dmp/issues"
},
"contributors": [
"Matt Kaniaris <mkaniaris@gmail.com>",
"Geoff Greer <geoff@greer.fm>"
],
"version": "2.0.1",
"main": "./lib/dmp.js",
"dependencies": {},
"devDependencies": {
"eslint": "3.x",
"eslint-config-floobits": "*"
},
"optionalDependencies": {},
"engines": {
"node": ">=8.x"
},
"directories": {
"lib": "./lib",
"src": "./src"
},
"scripts": {
"lint": "eslint .",
"test": "./test/run_tests",
"install": "node-gyp rebuild"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "https://github.com/Floobits/node-native-dmp/blob/master/LICENSE"
}
]
}