forked from kevincennis/promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "promise-js",
"version": "0.0.6",
"description": "ES6 Promise shim",
"main": "promise.js",
"keywords": [
"promises",
"promise",
"shim",
"es6"
],
"homepage": "https://github.com/kevincennis/promise",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "[email protected]:kevincennis/promise.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/kevincennis/promise/LICENSE"
}
],
"files": [
"promise.js",
"LICENSE"
],
"author": "Kevin Ennis <[email protected]>",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-uglify": "~0.2.6",
"grunt-contrib-jshint": "~0.7.1",
"grunt-cli": "~0.1.9",
"grunt-lintspaces": "~0.2.202",
"grunt-compare-size": "~0.4.0-rc.3",
"gzip-js": "~0.3.2",
"load-grunt-tasks": "~0.2.0",
"jshint-stylish": "~0.1.3",
"promises-aplus-tests": "*",
"grunt-contrib-copy": "~0.5.0",
"grunt-mocha-test": "~0.9.0"
}
}