-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "template-node-package",
"version": "1.0.0",
"description": "Template for node Packages written in TypeScript, Features Jest, Eslint, Prettier",
"author": "mernxl <mernxl@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/mernxl/template-node-package#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mernxl/template-node-package.git"
},
"bugs": {
"url": "https://github.com/mernxl/template-node-package/issues"
},
"keywords": [
"template",
"node",
"typescript",
"jest",
"eslint",
"prettier"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"scripts": {
"build": "yarn run clean && yarn run tsc -d",
"clean": "rimraf lib",
"tsc": "tsc",
"jest": "jest --maxWorkers 2",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "eslint src",
"lint:fix": "yarn run lint --fix",
"test": "tsc && yarn run lint && yarn run jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
}
}