-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "nativebird",
"description": "Ultralight promise extension compatible with Bluebird",
"type": "module",
"version": "1.3.0",
"author": "Yifeng Wang",
"repository": "https://github.com/doodlewind/nativebird.git",
"module": "./promise.mjs",
"main": "./dist/promise.cjs",
"exports": {
"require": "./dist/promise.cjs",
"import": "./promise.mjs",
"types": "./index.d.ts"
},
"files": [
"promise.mjs",
"README.md",
"logo.png",
"index.d.ts",
"dist/promise.cjs"
],
"types": "./index.d.ts",
"scripts": {
"build": "node ./scripts/build.cjs",
"prepublish": "npm run build",
"test": "mocha",
"coverage": "c8 --reporter=json-summary --reporter=text --reporter=html mocha",
"postcoverage": "coverage-badge-creator"
},
"devDependencies": {
"c8": "^7.11.3",
"coverage-badge-creator": "^1.0.12",
"mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"keywords": [
"promise",
"bluebird",
"async",
"async library",
"promise library",
"promise extension",
"observable"
],
"license": "MIT",
"engines": {
"node": ">=11"
}
}