-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "@skeet-framework/utils",
"version": "1.2.4",
"description": "Skeet Framework Plugin - Utils",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elsoul/skeet-utils.git"
},
"keywords": [
"TypeScript",
"Serverless",
"Utils",
"Skeet Plugin"
],
"author": "ELSOUL LABO B.V.",
"license": "Apache-2.0",
"private": false,
"bugs": {
"url": "https://github.com/elsoul/skeet-utils/issues"
},
"homepage": "https://skeet.dev",
"scripts": {
"test": "jest --coverage=false --detectOpenHandles --maxWorkers=1",
"build": "yarn build-doc && yarn version:update && yarn build:cjs && yarn build:esm",
"update:packages": "ncu -u --reject=node-fetch && yarn",
"version:update": "ts-node -r tsconfig-paths/register --transpile-only release.ts",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b tsconfig.esm.json",
"build-doc": "typedoc src/index.ts --out docs",
"publish": "npm publish",
"dev": "npx ts-node -r tsconfig-paths/register --transpile-only src/index.ts"
},
"dependencies": {
"date-fns": "2.30.0",
"date-fns-tz": "2.0.0",
"dotenv": "16.3.1",
"node-fetch": "2.6.9"
},
"devDependencies": {
"@types/jest": "29.5.4",
"@types/node": "20.5.7",
"@types/node-fetch": "2.6.4",
"babel-loader": "9.1.3",
"esbuild": "0.19.2",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"jest": "29.6.4",
"npm-check-updates": "16.13.2",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typedoc": "0.25.0",
"typescript": "5.2.2"
}
}