-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.31 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
{
"name": "grunt-promise",
"version": "1.1.3",
"description": "Create asynchronous Grunt tasks using Promises.",
"homepage": "https://github.com/unicorn-fail/grunt-promise",
"keywords": [
"grunt",
"async",
"bluebird",
"q",
"promise",
"es6"
],
"author": {
"name": "Mark Halliwell",
"url": "https://github.com/markhalliwell"
},
"repository": {
"type": "git",
"url": "git://github.com/unicorn-fail/grunt-promise.git"
},
"bugs": {
"url": "https://github.com/unicorn-fail/grunt-promise/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/unicorn-fail/grunt-promise/blob/main/LICENSE"
}
],
"runkitExampleFilename": "script/example.js",
"engines": {
"node": ">= 0.12.0"
},
"main": "index.js",
"files": [
"index.js",
"lib",
"script",
"tasks"
],
"scripts": {
"postinstall": "node script/post-install.js",
"test": "grunt test"
},
"dependencies": {},
"devDependencies": {
"bluebird": "^3.1.1",
"es6-promise": "^3.0.2",
"grunt": "^0.4.5",
"grunt-bump": "^0.7.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-eslint": "^17.3.1",
"nodeunit": "^0.9.1",
"promise": "^7.1.1",
"q": "^1.4.1"
},
"peerDependencies": {
"grunt": ">=0.4.5"
}
}