forked from taylorhakes/promise-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "promise-polyfill",
"version": "6.0.2",
"description": "Lightweight promise polyfill. A+ compliant",
"main": "promise.js",
"scripts": {
"test": "eslint promise.js && mocha && karma start --single-run",
"build": "uglifyjs --compress --support-ie8 --mangle -o promise.min.js -- promise.js "
},
"repository": {
"type": "git",
"url": "https://[email protected]/taylorhakes/promise-polyfill.git"
},
"author": "Taylor Hakes",
"license": "MIT",
"bugs": {
"url": "https://github.com/taylorhakes/promise-polyfill/issues"
},
"homepage": "https://github.com/taylorhakes/promise-polyfill",
"devDependencies": {
"eslint": "^2.4.0",
"karma": "^0.13.19",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.1",
"mocha": "^2.3.4",
"promises-aplus-tests": "*",
"sinon": "^1.17.2",
"uglify-js": "^2.6.2"
},
"keywords": [
"promise",
"promise-polyfill",
"ES6",
"promises-aplus"
],
"dependencies": {}
}