-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1021 Bytes
/
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
{
"name": "@lambda-func/template",
"version": "0.0.0",
"repository": {
"url": "https://github.com/connorgiles/lambda-func",
"type": "git"
},
"description": "The utils of lambda-func",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"authors": [
"Connor Giles <[email protected]>"
],
"license": "ISC",
"devDependencies": {
"typescript": "~4.5.4",
"@types/node": "^16",
"rimraf": "~3.0.2",
"jest": "~27.4.5",
"@types/jest": "~27.0.3",
"ts-jest": "~27.1.2",
"jest-junit": "~13.0.0",
"eslint": "^8",
"@typescript-eslint/eslint-plugin": "~5.8.0",
"@typescript-eslint/parser": "~5.8.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-prettier": "~4.0.0",
"prettier": "^2"
},
"dependencies": {
"@lambda-func/core": "~0.0.0",
"tslib": "~2.3.1"
}
}