-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "babel-plugin-transform-commonjs",
"version": "1.1.6",
"description": "A Babel plugin transform to convert CommonJS to ES modules",
"main": "dist/index.js",
"scripts": {
"prepack": "tsc",
"build": "tsc",
"watch": "tsc -w",
"test": "mocha"
},
"keywords": [
"babel",
"transform",
"plugin",
"commonjs",
"modules",
"esm"
],
"author": "Tim Branyen (@tbranyen)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tbranyen/babel-plugin-transform-commonjs.git"
},
"bugs": {
"url": "https://github.com/tbranyen/babel-plugin-transform-commonjs/issues"
},
"homepage": "https://github.com/tbranyen/babel-plugin-transform-commonjs#readme",
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"reserved-words": "^0.1.2"
},
"peerDependencies": {
"@babel/core": ">=7"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@types/babel__core": "^7.1.3",
"@types/reserved-words": "^0.1.0",
"mocha": "^5.2.0",
"ts-node": "7.0.1",
"typescript": "^3.1.1"
}
}