-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 809 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 809 Bytes
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
{
"name": "@badass-team-code/promise-utils",
"version": "0.0.1",
"description": "Utilities for dealing with promises",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/badassteamcode/promise-utils.git"
},
"author": "Lucas Santos, Jean Cigoli e Davi Soares",
"license": "MIT",
"keywords": [
"promise",
"promises",
"recursive-promise-handler"
],
"homepage": "https://github.com/badassteamcode/promise-utils#readme",
"bugs": {
"url": "https://github.com/badassteamcode/promise-utils/issues"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --declaration",
"prepublish": "yarn build"
},
"devDependencies": {
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
}
}