-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
71 lines (71 loc) · 1.63 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
{
"name": "babel-plugin-debug-macros",
"version": "1.0.2",
"description": "Debug macros and feature flag stripping",
"keywords": [
"babel",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/babel-plugin-debug-macros"
},
"license": "MIT",
"contributors": [
"Chad Hietala <[email protected]>",
"Kris Selden <[email protected]>",
"Robert Jackson <[email protected]>"
],
"main": "index.js",
"files": [
"index.js",
"dist/src/"
],
"scripts": {
"changelog": "lerna-changelog",
"lint": "eslint .",
"prepare": "tsc",
"test": "jest"
},
"jest": {
"testMatch": [
"<rootDir>/dist/tests/**/*-test.js"
]
},
"dependencies": {
"babel-import-util": "^2.0.2",
"semver": "^7.6.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@eslint/js": "^9.0.0",
"@types/babel__core": "^7.20.5",
"@types/chai": "^4.3.14",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^4.0.0",
"code-equality-assertions": "^0.9.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"jest": "^29.7.0",
"lerna-changelog": "^2.2.0",
"prettier": "^3.2.5",
"release-plan": "^0.9.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}