-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "@shaharmor/node-module-boilerplate",
"version": "0.0.0",
"description": "node-module-boilerplate",
"keywords": [],
"homepage": "https://github.com/shaharmor/node-module-boilerplate",
"bugs": {
"url": "https://github.com/shaharmor/node-module-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaharmor/node-module-boilerplate.git"
},
"license": "MIT",
"author": {
"name": "Shahar Mor"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf ./coverage ./dist",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:tsc": "tsc --noEmit -p ./tsconfig.json",
"lint:eslint": "eslint . --max-warnings 0",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"prepublish": "npm run build",
"setup": "npm ci",
"test": "jest"
},
"devDependencies": {
"@shaharmor/eslint-config": "7.29.0",
"@shaharmor/prettier-config": "2.2.0",
"@shaharmor/tsconfig": "4.1.7",
"@types/jest": "26.0.23",
"@types/node": "15.12.4",
"eslint": "7.29.0",
"husky": "6.0.0",
"jest": "27.0.4",
"lint-staged": "11.0.0",
"prettier": "2.3.1",
"sort-package-json": "1.50.0",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"typescript": "4.3.4"
}
}