-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
81 lines (81 loc) · 2.06 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
{
"name": "babel-plugin-transform-import-meta",
"version": "2.3.2",
"description": "Transforms import.meta for nodejs environments",
"repository": {
"type": "git",
"url": "https://github.com/javiertury/babel-plugin-transform-import-meta"
},
"license": "BSD",
"author": "Javier Garcia <[email protected]>",
"keywords": [
"babel-plugin",
"import-meta"
],
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"type": "commonjs",
"main": "lib/index.js",
"module": "lib/index.esm.mjs",
"exports": {
"require": "./lib/index.js",
"import": "./lib/index.esm.mjs"
},
"types": "lib/index.d.ts",
"scripts": {
"prepare": "simple-git-hooks",
"clean": "rimraf lib",
"build": "rollup -c rollup.config.mjs",
"lint": "eslint --max-warnings=0 .",
"test": "jest",
"prepack": "pnpm run lint && pnpm run clean && pnpm run build",
"prepublishOnly": "pnpm run test",
"release": "commit-and-tag-version"
},
"dependencies": {
"@babel/template": "^7.25.9",
"tslib": "^2.8.1"
},
"peerDependencies": {
"@babel/core": "^7.10.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/types": "^7.26.3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/babel__core": "^7.20.5",
"@types/babel__template": "^7.4.4",
"@types/jest": "^29.5.14",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"eslint-config-love": "^114.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"rimraf": "^6.0.1",
"rollup": "^4.29.1",
"rollup-plugin-typescript2": "^0.36.0",
"simple-git-hooks": "^2.11.1",
"ts-dedent": "^2.2.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": "eslint"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint -e"
}
}