-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 955 Bytes
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
{
"name": "@shelepuginivan/lunatic",
"version": "1.3.1",
"description": "Node.js backend framework",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"coverage": "jest --coverage",
"lint": "eslint --fix src",
"test": "jest"
},
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.js"
},
"keywords": [
"Node.js",
"backend",
"framework"
],
"author": "Shelepugin Ivan <shelepuginivan@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/shelepuginivan/lunatic"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.6.1",
"@types/node": "^20.4.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.6.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}