-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
63 lines (63 loc) · 1.63 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
56
57
58
59
60
61
62
63
{
"name": "aws-cloudfront-sign",
"version": "3.0.2",
"description": "Utility module for signing AWS CloudFront URLs",
"keywords": [
"aws",
"CloudFront",
"signed URL"
],
"bugs": {
"url": "https://github.com/jasonsims/aws-cloudfront-sign/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonsims/aws-cloudfront-sign.git"
},
"funding": "https://ko-fi.com/jzimz",
"license": "MIT",
"author": "Jason Sims <[email protected]>",
"contributors": [
{
"name": "Matt Palmerlee"
}
],
"main": "./dist/cjs/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"clean": "rimraf ./dist",
"commitlint": "commitlint --edit",
"lint": "eslint ./src",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"release": "np",
"test": "jest ./src"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@jest/globals": "^29.5.0",
"@types/node": "^20.4.0",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-semistandard": "^17.0.0",
"husky": "^8.0.0",
"moment": "^2.9.0",
"np": "^8.0.4",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18"
},
"tonicExampleFilename": "./examples/signedURL.js"
}