This repository has been archived by the owner on Feb 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@himenon/template-js",
"version": "1.0.5",
"description": "node library template",
"keywords": [
"template",
"proxy directory",
"typescript"
],
"homepage": "https://github.com/Himenon/template-js#readme",
"bugs": {
"url": "https://github.com/Himenon/template-js/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Himenon/template-js.git"
},
"license": "MIT",
"author": {
"name": "Himenon",
"email": "k.himeno314@gmail.com",
"url": "https://github.com/Himenon"
},
"sideEffects": false,
"main": "./lib/$cjs/index.js",
"module": "./lib/$esm/index.js",
"types": "./lib/$types/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib",
"package.json",
"README.md"
],
"scripts": {
"build": "pnpm ts ./scripts/build.ts",
"clean": "pnpm ts ./scripts/clean.ts",
"format:code": "run-s prettier:format eslint:format",
"lerna:version:up": "lerna version --yes",
"release:github:registry": "pnpm publish --registry https://npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}",
"release:npm:registry": "pnpm publish",
"test": "run-p jest depcruise:validate eslint:validate prettier:validate",
"prettier:format": "prettier \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\" --write ./src",
"prettier:validate": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\"",
"eslint:format": "eslint \"**/*.{ts,tsx}\" --fix",
"eslint:validate": "eslint \"**/*.{ts,tsx}\"",
"depcruise:validate": "depcruise --validate .dependency-cruiser.js src",
"jest": "jest -c ./jest.config.js",
"ts": "ts-node -P tsconfig.build.json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@types/jest": "27.5.1",
"@types/node": "17.0.38",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"cherry-pick": "^0.5.0",
"conventional-changelog-angular-all": "1.7.0",
"cpy": "8.1.2",
"cz-conventional-changelog": "^3.3.0",
"dependency-cruiser": "11.8.0",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"execa": "5.1.1",
"generate-changelog": "1.8.0",
"jest": "28.1.0",
"jest-cli": "28.1.0",
"lerna": "5.0.0",
"lint-staged": "12.5.0",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"simple-git-hooks": "^2.8.0",
"sort-package-json": "1.57.0",
"ts-jest": "28.0.3",
"ts-node": "10.8.0",
"typescript": "4.7.2"
},
"engines": {
"pnpm": ">=7"
},
"publishConfig": {
"access": "public"
}
}