-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.19 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
63
{
"name": "bramble",
"description": "A tool which helps you safely upgrade your NPM dependencies.",
"version": "1.1.0",
"keywords": [
"npm",
"build",
"tool",
"automation",
"updater",
"dependencies",
"package",
"update",
"upgrade"
],
"author": {
"name": "Ben Marvell"
},
"contributors": [
{
"name": "Ben Marvell",
"email": "[email protected]"
},
{
"name": "Leonard Martin",
"email": "[email protected]"
},
{
"name": "Ralph Cowling",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/easternbloc/bramble"
},
"bugs": {
"url": "https://github.com/easternbloc/bramble/issues"
},
"main": "./index.js",
"bin": "./bin/bramble",
"scripts": {
"test": "mocha --reporter tap test"
},
"dependencies": {
"cli-spinner": "0.2.1",
"colors": "1.1.2",
"commander": "2.9.0",
"npm": "3.5.2",
"q": "1.4.1",
"semver": "5.1.0"
},
"devDependencies": {
"chai": "3.4.1",
"mocha": "2.3.4",
"sinon": "1.17.2",
"sinon-chai": "2.8.0"
},
"engines": {
"node": "4.2.3",
"npm": "3.5.1"
}
}