-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 KB
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
{
"name": "@ungap/babel-plugin-transform-esx",
"version": "0.4.3",
"description": "An ESX transformer as implementation reference.",
"main": "src/index.js",
"type": "module",
"scripts": {
"test:all": "rm -rf ./test/transform/output.js && npm run test:build && npm run test",
"test:build": "babel ./test/index.js -o ./test/index.compiled.js",
"test": "npm run test:build && node ./test/index.compiled.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ungap/babel-plugin-transform-esx.git"
},
"keywords": [
"ESX",
"polyfill"
],
"author": "Nicolò Ribaudo (https://github.com/nicolo-ribaudo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ungap/babel-plugin-transform-esx/issues"
},
"homepage": "https://github.com/ungap/babel-plugin-transform-esx#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@types/babel__core": "^7.1.20",
"prettier": "^2.8.1"
},
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.18.6",
"@ungap/esxtoken": "^0.4.2",
"umeta": "^0.2.4"
},
"peerDependencies": {
"@babel/core": "^7.20.2"
}
}