-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 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
{
"name": "express-wyre",
"version": "0.1.0-alpha.0",
"description": "💰 Express middleware for hosting Wyre verification. https://www.sendwyre.com/",
"main": "dist",
"repository": "https://github.com/cawfree/express-sendwyre",
"author": "Alex Thomas (@cawfree) <hello@cawfree.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "babel-node scripts/start",
"build": "yarn ; babel src --out-dir dist ; rm -rf node_modules",
"prettify": "yarn prettier --write \"**/*.js\"",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"husky": "^4.2.5",
"jest": "^26.2.2",
"leasot": "^11.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"base-64": "^0.1.0",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"http-status-codes": "^1.4.0",
"type-check": "^0.4.0"
}
}