-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 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
39
40
41
42
{
"name": "belofte.js",
"version": "1.3.0",
"url": "https://github.com/rousan/belofte.js",
"description": "A lightweight Promises/A+ compliant implementation of ECMAScript Promise API",
"main": "dist/belofte.js",
"scripts": {
"build": "gulp",
"test": "mocha spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rousan/belofte.js.git"
},
"keywords": [
"promise",
"promises-aplus",
"ecmascript",
"javascript",
"implementation",
"async",
"await",
"polyfill",
"shim"
],
"author": "Rousan Ali <[email protected]> (https://rousan.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rousan/belofte.js/issues"
},
"homepage": "https://github.com/rousan/belofte.js#readme",
"devDependencies": {
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-header": "^1.8.9",
"gulp-jsbeautifier": "^2.1.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"mocha": "^5.0.0",
"promises-aplus-tests": "*"
}
}