-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
105 lines (105 loc) · 2.4 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "esbuild-runner",
"version": "2.2.1",
"description": "Super-fast on-the-fly transpilation of modern JS, TypeScript and JSX using esbuild",
"repository": "http://github.com/folke/esbuild-runner",
"main": "lib/index.js",
"keywords": [
"esbuild",
"typescript",
"commonjs",
"jest",
"esnext",
"cjs",
"node",
"nodejs",
"es6",
"esm",
"ts-node"
],
"bin": {
"esr": "./bin/esr.js"
},
"author": "Folke Lemaitre",
"license": "Apache License 2.0",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src --ext .ts,.js --cache",
"prebuild": "npm run clean && npm run lint",
"build:ts": "tsc --pretty",
"build": "npm run build:ts",
"run": "node ."
},
"files": [
"lib",
"bin",
"jest.js",
"register.js"
],
"ultra": {
"concurrent": [
"lint",
"prebuild",
"build",
"ultra"
]
},
"release-it": {
"hooks": {
"before:init": "ultra --color lint",
"after:bump": "ultra --color build"
},
"npm": {
"publish": true
},
"git": {
"commitMessage": "chore(release): ${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
},
"devDependencies": {
"@release-it/conventional-changelog": "5.1.1",
"@types/eslint": "8.4.7",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/node": "18.8.5",
"@types/prettier": "2.7.1",
"@types/rimraf": "3.0.2",
"@types/source-map-support": "0.5.6",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"devmoji": "2.3.0",
"esbuild": "0.15.12",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "44.0.2",
"husky": "8.0.1",
"jest": "29.2.1",
"prettier": "2.7.1",
"release-it": "15.5.0",
"rimraf": "3.0.2",
"type-fest": "3.1.0",
"typescript": "4.8.4",
"typesync": "0.9.2"
},
"peerDependencies": {
"esbuild": "*"
},
"dependencies": {
"source-map-support": "0.5.21",
"tslib": "2.4.0"
}
}