-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "hapi-signed-url",
"version": "1.0.4",
"description": "A hapijs plugin to generate signed url for response objects",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"engines": {
"node": "14.x",
"npm": "6.x.x"
},
"scripts": {
"start": "npx ts-node src/index.ts",
"pretty": "npx prettier '**/*.{json,js,ts,md}' --write",
"test": "npx mocha -p --require ts-node/register test/*.spec.ts",
"prebuild": "tsc",
"build": "npm run test && npm publish --dry-run",
"deploy": "npm run test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AP-Atul/hapi-signed-url.git"
},
"keywords": [
"hapijs",
"hapi-plugin",
"s3",
"signed-urls"
],
"author": "AP-Atul",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/AP-Atul/hapi-signed-url/issues"
},
"homepage": "https://github.com/AP-Atul/hapi-signed-url#readme",
"dependencies": {
"ramda": "^0.28.0"
},
"devDependencies": {
"@hapi/hapi": "^20.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"@types/chai": "^4.3.3",
"@types/hapi__hapi": "^20.0.12",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.5",
"@types/ramda": "^0.28.15",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"prettier": "^2.7.1"
}
}