forked from twolfson/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 KB
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
64
65
66
{
"name": "foundry",
"description": "Release manager for npm, bower, component, PyPI, git tags, and any plugin you can write",
"version": "1.1.1",
"homepage": "https://github.com/twolfson/foundry",
"author": {
"name": "Todd Wolfson",
"email": "todd@twolfson.com",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/foundry.git"
},
"bugs": {
"url": "https://github.com/twolfson/foundry/issues"
},
"licenses": [
{
"type": "UNLICENSE",
"url": "https://github.com/twolfson/foundry/blob/master/UNLICENSE"
}
],
"bin": {
"foundry": "bin/foundry"
},
"main": "lib/foundry",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"link-bash-completion": "sudo ln -s $PWD/bin/completion/foundry /etc/bash_completion.d/foundry",
"test": "(test \"$VAGRANT\" = \"true\" || test \"$TRAVIS\" = \"true\" || (echo \"Tests must be run in enclosed environment (e.g. Vagrant, Travis) to prevent accidental publishes\n\" 1>&2 && exit 1)) && mocha --recursive"
},
"dependencies": {
"commander": "~2.1.0",
"async": "~0.2.9",
"obj-extend": "~0.1.0",
"commander-completion": "~0.1.0",
"npm": "~1.3.25",
"glob": "~3.2.8",
"chalk": "~0.4.0"
},
"devDependencies": {
"mocha": "~1.11.0",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-watch": "~0.4.0",
"chai": "~1.8.1",
"foundry-release-git": "~1.0.1"
},
"keywords": [
"release",
"manager",
"npm",
"bower",
"component",
"pypi",
"git",
"plugin",
"distribute",
"package",
"tag",
"semver"
]
}