-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "@braintree/wrap-promise",
"version": "3.0.2",
"description": "A small lib to return promises or use callbacks",
"main": "dist/wrap-promise.js",
"types": "dist/wrap-promise.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-braintree": "^6.0.0-typescript-prep-rc.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^5.1.6"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "prettier --write .",
"build": "tsc --declaration",
"lint": "eslint --ext .js,.ts .",
"posttest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/braintree/wrap-promise.git"
},
"keywords": [],
"author": "Braintree <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/braintree/wrap-promise/issues"
},
"homepage": "https://github.com/braintree/wrap-promise#readme"
}