-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 931 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 931 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
{
"name": "Some module",
"version": "0.0.1",
"description": "Some module description",
"main": "index.js",
"types": "types.d.ts",
"engines": {
"node": "18 || 20 || 21"
},
"readmeFilename": "README.md",
"scripts": {
"test": "npm run lint && npm run types && node test/unit.js",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\""
},
"keywords": [],
"author": "Timur Sevimli <svmlitimur@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timursevimli/someModule/issues",
"email": "svmlitimur+github@gmail.com"
},
"homepage": "https://github.com/timursevimli/someModule#readme",
"devDependencies": {
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}