forked from elliot-a/grunt-git-batch-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "@recogizer/grunt-batch-git-clone",
"description": "Clones multiple git repos into specified folders.",
"version": "0.4.0",
"homepage": "https://github.com/elliot-a/grunt-git-batch-clone",
"author": {
"name": "Elliot Agro",
"email": "elliotagro83@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:elliot-a/grunt-git-batch-clone.git"
},
"bugs": {
"url": "https://github.com/elliot-a/grunt-git-batch-clone/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/elliot-a/grunt-git-batch-clone/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test",
"precommit": "lint-staged"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-nodeunit": "^0.3.3",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"keywords": [
"gruntplugin, git, batch, grunt"
],
"dependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-run-task": "^0.1.2",
"q": "^1.1.2",
"rimraf": "^2.2.8"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"tslint --fix -c ./tslint.json 'src/**/*.ts'",
"git add"
]
}
}