-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.19 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
{
"name": "babel-preset-perf",
"version": "1.1.8",
"description": "Babel preset for optimizing code performance",
"keywords": [
"babel",
"preset",
"performance"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/budarin/babel-preset-perf.git"
},
"bugs": {
"url": "https://github.com/budarin/babel-preset-perf/issues"
},
"homepage": "https://github.com/budarin/babel-preset-perf#readme",
"author": "vadim_budarin <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"dependencies": {
"@babel/generator": "^7.20.14",
"@babel/types": "^7.20.7"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/helper-module-imports": "^7.18.6",
"@babel/helper-plugin-utils": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/traverse": "^7.20.13",
"@types/babel__helper-plugin-utils": "^7.10.0",
"@types/babel__traverse": "^7.18.3",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"autocannon": "^7.10.0",
"babel-jest": "^29.4.2",
"babel-loader": "^9.1.2",
"babel-plugin-tester": "^11.0.4",
"benchmark": "^2.1.4",
"chalk": "4.1.2",
"core-js": "^3.28.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"fastify": "^4.13.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"json-schema-to-ts": "^2.6.2",
"lint-staged": "^13.1.2",
"microtime": "^3.1.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"zx": "^7.1.1"
},
"lint-staged": {
"./tests/complete-tests/**/*.{js,ts}": [
"sh ./scripts/build.sh && yarn jest --changedFilesWithAncestor"
],
"./tests/helpers-tests/**/*.{js,ts}": [
"sh ./scripts/build.sh && yarn jest --changedFilesWithAncestor"
],
"./tests/transformation-tests/**/*.{js,ts}": [
"sh ./scripts/test.fixtures.sh"
],
"./src/**/*.{js,ts}": [
"yarn run test"
],
"*.{js,jsx,ts,tsx,json,md,css,html}": [
"prettier --write"
]
},
"scripts": {
"test": "sh ./scripts/test.sh",
"test-plugin": "sh ./scripts/test.plugin.sh",
"test-fixtures": "sh ./scripts/test.fixtures.sh",
"compile-demo": "sh ./scripts/compile-demo.sh",
"build": "sh ./scripts/build.sh",
"clear-cache": "sh ./scripts/clean-cache.sh",
"run-statsServer": "sh ./scripts/run-stats-server.sh",
"prepare": "husky install",
"prepublishOnly": "sh ./scripts/prepublishOnly.sh",
"postpublish": "yarn clear-cache",
"branch-refresh": "sh ./scripts/branch-refresh.sh",
"deps-upgrade": "sh ./scripts/deps-upgrade.sh"
}
}