-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "babel-plugin-glowup-vibes",
"version": "2.0.0",
"description": "babel plugin to transpile internet slang into valid javascript",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "babel ./src/example.js --out-file ./lib/compiled.js",
"lint": "npx prettier . --write"
},
"author": "Christina Martinez",
"repository": {
"type": "git",
"url": "https://github.com/christina-de-martinez/babel-plugin-glowup-vibes"
},
"bugs": {
"url": "https://github.com/christina-de-martinez/babel-plugin-glowup-vibes/issues"
},
"homepage": "https://github.com/christina-de-martinez/babel-plugin-glowup-vibes#readme",
"license": "MIT",
"keywords": [
"babel-plugin",
"christina.codes",
"gen z",
"internet slang",
"brainrot",
"slang",
"goated",
"lit",
"sick",
"vibes",
"major w",
"yeet"
],
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/parser": "^7.25.3",
"jest": "^29.7.0",
"prettier": "3.0.3"
},
"dependencies": {
"babel-plugin-glowup-vibes": "^1.0.10",
"core-js": "^3.33.0"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/",
"./identifierMappings.js"
]
}
}