-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 827 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 827 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
{
"name": "gulp-tfs",
"description": "TFS check-out and edit plugin for gulp",
"version": "0.0.1",
"homepage": "https://github.com/heatmonkey/gulp-tfs",
"repository": "git://github.com/heatmonkey/gulp-tfs.git",
"author": "James O'Donnell (https://github.com/heatmonkey/)",
"main": "./index.js",
"keywords": [
"gulpplugin",
"TFS"
],
"dependencies": {
"gulp-util": "^2.2.14",
"through2": "^0.4.1"
},
"devDependencies": {
"chai": "^1.0.0",
"jshint": "^2.5.1",
"mocha": "^1.18.2",
"tmp": "0.0.23",
"vinyl": "^0.2.3"
},
"scripts": {
"test": "mocha && jshint ./*.js && jshint ./test/*.js"
},
"engines": {
"node": ">= 0.10.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/heatmonkey/gulp-tfs/raw/master/LICENSE"
}
]
}