-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.39 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
59
60
61
62
{
"name": "brauhaus-diff",
"version": "1.0.0",
"description": "A recipe difference plugin for Brauhaus.js",
"homepage": "https://github.com/homebrewing/brauhaus-diff",
"main": "lib/brauhaus-diff.js",
"files": [
"Cakefile",
"package.json",
"README.md",
"dist",
"lib",
"src"
],
"scripts": {
"pretest": "./node_modules/coffee-script/bin/cake build",
"prepublish": "./node_modules/coffee-script/bin/cake build",
"test": "./node_modules/coffee-script/bin/cake test"
},
"repository": {
"type": "git",
"url": "https://github.com/homebrewing/brauhaus-diff"
},
"bugs": {
"url": "https://github.com/homebrewing/brauhaus-diff/issues"
},
"keywords": [
"brauhaus",
"plugin",
"diff",
"difference",
"beer",
"recipe"
],
"author": {
"name": "Jens Taylor",
"email": "[email protected]",
"url": "https://github.com/homebrewing"
},
"license": "MIT",
"dependencies": {
"imurmurhash": ">=0.0.1 <1",
"fast-levenshtein": ">=1.0.0 <2"
},
"peerDependencies": {
"brauhaus": ">=1 <2"
},
"devDependencies": {
"brauhaus": ">=1 <2",
"coffee-script": ">=1.6.2 <2",
"coffeelint": ">=0.5.6 <1",
"mocha": "1.9.x",
"mocha-phantomjs": "2.x",
"chai": "1.x",
"uglify-js": "2.x",
"istanbul": ">=0.1.34 <0.2",
"coveralls": ">=2.0.7 <3"
},
"engines": {
"node": ">=0.8.19"
}
}