-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 996 Bytes
/
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
{
"name": "babel-plugin-transform-walrus-operator",
"version": "0.0.2",
"description": "compile walrus operator into an IIFE",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sam-parsons/babel-plugin-transform-walrus-operator.git"
},
"author": "Sam Parsons <samparsons269@gmail.com> (http://sam-parsons.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sam-parsons/babel-plugin-transform-walrus-operator/issues"
},
"homepage": "https://github.com/sam-parsons/babel-plugin-transform-walrus-operator#readme",
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/helper-plugin-test-runner": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/register": "7.13.8",
"chai": "4.3.4",
"mocha": "8.3.2"
},
"dependencies": {
"@babel/helper-plugin-utils": "7.13.0"
}
}