-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.5 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
50
51
52
53
54
55
{
"name": "call-to-promise",
"version": "2.0.7",
"description": "A lightweight, production-ready, universal library for transforming callback-style functions into Promise-based ones. Works seamlessly across Node.js, Deno, and browsers.",
"main": "index.js",
"types": "index.d.ts",
"type": "commonjs",
"files": [
"dist",
"src",
"types",
"index.js",
"index.d.ts",
"indexBrowser.js"
],
"scripts": {
"build": "rm -rf ./dist/* && webpack --config webpack.umd.js --mode production && webpack --config webpack.module.js --mode production",
"build-types": "rm -rf ./types/* && tsc",
"lint": "goodparts src",
"test": "mocha tests/**/*Test.js && deno run ./tests/moduleBuild.denotest.mjs",
"lint-fix": "prettier --config .prettierrc.js -w src && eslint src --fix",
"publint": "npx publint"
},
"keywords": [
"promise",
"callback",
"async",
"promise-wrapper",
"callback-to-promise",
"promisify",
"universal",
"typescript",
"node",
"deno",
"browser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dominikj111/call-to-promise.git"
},
"author": "dominikj111",
"license": "Apache-2.0",
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"chai": "^4.3.10",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.51.0",
"goodparts": "^1.3.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}