UNPKG

2.01 kBJSONView Raw
1{
2 "name": "babel-plugin-debug-macros",
3 "version": "1.0.0",
4 "description": "Debug macros and feature flag stripping",
5 "keywords": [
6 "babel",
7 "plugin"
8 ],
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/chadhietala/babel-debug-macros"
12 },
13 "license": "MIT",
14 "contributors": [
15 "Chad Hietala <chadhietala@gmail.com>",
16 "Kris Selden <kris.selden@gmail.com>",
17 "Robert Jackson <me@rwjblue.com>"
18 ],
19 "main": "index.js",
20 "files": [
21 "index.js",
22 "dist/src/"
23 ],
24 "scripts": {
25 "changelog": "lerna-changelog",
26 "lint": "eslint .",
27 "test": "jest",
28 "prepare": "tsc"
29 },
30 "jest": {
31 "testMatch": [
32 "<rootDir>/dist/tests/**/*-test.js"
33 ]
34 },
35 "dependencies": {
36 "babel-import-util": "^2.0.2",
37 "semver": "^7.6.0"
38 },
39 "devDependencies": {
40 "@babel/core": "^7.24.4",
41 "@babel/preset-env": "^7.24.4",
42 "@eslint/js": "^9.0.0",
43 "@release-it-plugins/lerna-changelog": "^6.1.0",
44 "@types/babel__core": "^7.20.5",
45 "@types/chai": "^4.3.14",
46 "@types/jest": "^29.5.12",
47 "@types/node": "^20.12.7",
48 "@types/semver": "^7.5.8",
49 "@typescript-eslint/parser": "^7.6.0",
50 "chai": "^4.0.0",
51 "code-equality-assertions": "^0.9.0",
52 "eslint": "^9.0.0",
53 "eslint-config-prettier": "^9.1.0",
54 "eslint-plugin-n": "^16.6.2",
55 "eslint-plugin-prettier": "^5.1.3",
56 "globals": "^15.0.0",
57 "jest": "^29.7.0",
58 "lerna-changelog": "^2.2.0",
59 "prettier": "^3.2.5",
60 "release-it": "^17.1.1",
61 "typescript": "^5.4.5"
62 },
63 "peerDependencies": {
64 "@babel/core": "^7.0.0"
65 },
66 "engines": {
67 "node": ">=16"
68 },
69 "publishConfig": {
70 "registry": "https://registry.npmjs.org"
71 },
72 "release-it": {
73 "plugins": {
74 "@release-it-plugins/lerna-changelog": {
75 "infile": "CHANGELOG.md",
76 "launchEditor": true
77 }
78 },
79 "git": {
80 "tagName": "v${version}"
81 },
82 "github": {
83 "release": true,
84 "tokenRef": "GITHUB_AUTH"
85 }
86 }
87}