-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 KB
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
{
"name": "~~__node-lib_template__~~",
"version": "0.0.20",
"private": true,
"main": "dist/index.js",
"module": "src/index.ts",
"jsnext:main": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"build:watch": "concurrently \"yarn run tsc:watch\"",
"tsc:watch": "tsc --watch",
"format": "prettier --write src test",
"format:check": "prettier --check src test",
"format:watch": "onchange \"src/**/*\" \"test/**/*\" -- prettier --write {{changed}}",
"lint": "eslint --max-warnings=0 src/ --ext .ts,.tsx",
"lint-fix": "yarn run lint --fix",
"lint:watch": "onchange \"src/**/*\" -- eslint --max-warnings=0 src/ --ext .ts,.tsx",
"lint-fix:watch": "onchange \"src/**/*\" -- yarn run lint-fix",
"test:unit": "jest . --config jestconfig.json --silent --detectOpenHandles",
"test:unit:watch": "onchange \"src/**/*\" \"test/**/*\" -- yarn run test:unit",
"prepublishOnly": "yarn install && yarn run build"
},
"engines": {
"node": "16.19.1",
"yarn": "1.22.10"
},
"devDependencies": {
"@jest/globals": "29.4.2",
"@tofu-apis/eslint-config-ts-base": "*",
"@types/jest": "29.4.0",
"@types/lodash": "4.14.194",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"concurrently": "8.0.1",
"eslint": "7.32.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "29.4.2",
"onchange": "7.1.0",
"prettier": "2.3.2",
"prettier-plugin-organize-imports": "2.3.3",
"ts-jest": "29.0.5",
"typescript": "5.0.4"
},
"dependencies": {
"lodash": "4.17.21",
"yup": "0.32.9"
},
"repository": "git@github.com:tofu-apis/node-lib_template.git",
"license": "MIT"
}