This repository was archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "grunt-build-control",
"description": "Automate version control tasks for your project's built code. Keep built code in sync with source code, maintain multiple branches of built code, commit with automatic messages, and push to remote repositories.",
"version": "0.7.1",
"homepage": "https://github.com/robwierzbowski/grunt-build-control",
"author": "Rob Wierzbowski <hello@robwierzbowski.com> (http://robwierzbowski)",
"repository": {
"type": "git",
"url": "git://github.com/robwierzbowski/grunt-build-control.git"
},
"bugs": {
"url": "https://github.com/robwierzbowski/grunt-build-control/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/robwierzbowski/grunt-build-control/blob/master/LICENSE"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"bluebird": "^3.0.6",
"semver": "~4.3.3",
"shelljs": "~0.2.6"
},
"devDependencies": {
"async": "^0.9.0",
"chai": "^1.9.2",
"fs-extra": "^0.12.0",
"grunt": "~0.4.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"lodash": "^2.4.1",
"mocha": "^2.4.5"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin"
]
}