-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 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
{
"name": "promise-for-es",
"version": "1.0.0",
"description": "A ES2021 Promise implementation based on ES3 has high compatibility, and comply with ECMA-262 and Promises/A+",
"main": "dist/promise-for-es.js",
"module": "dist/promise-for-es.mjs",
"scripts": {
"build:prod": "node ./scripts/build-prod.js",
"test:aplus": "node ./test/aplus/",
"test:es6": "node ./test/es6/",
"test:core-js": "qunit ./test/core-js/index.js"
},
"keywords": [
"es6-promise",
"promise-like",
"promise-polyfill",
"promise-ponyfill",
"promises-a",
"promises-aplus",
"ie8",
"allsettled",
"any",
"finally",
"es2021"
],
"author": "Ambit tsai <ambit_tsai@qq.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ambit-tsai/promise-for-es.git"
},
"homepage": "https://github.com/ambit-tsai/promise-for-es#readme",
"bugs": {
"url": "https://github.com/ambit-tsai/promise-for-es/issues"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.0.0",
"mocha": "^8.2.1",
"mochawesome": "^6.2.1",
"promises-aplus-tests": "^2.1.2",
"promises-es6-tests": "^0.5.0",
"qunit": "^2.13.0",
"rollup": "^2.34.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
}
}