forked from prateekbh/babel-esm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.42 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
{
"name": "@hackr/multi-babel",
"version": "1.1.0",
"description": "Add this plugin to generate mirrored esm modules for your existing bundles",
"main": "src/index.js",
"scripts": {
"test": "ava tests/**/*.test.js --verbose",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prateekbh/babel-esm-plugin.git"
},
"keywords": [],
"author": "Prateek Bhatnagar",
"contributors": [
{
"name": "Gabriel Nunes",
"email": "[email protected]",
"url": "https://github.com/gnuns"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/prateekbh/babel-esm-plugin/issues"
},
"homepage": "https://github.com/prateekbh/babel-esm-plugin#readme",
"dependencies": {
"chalk": "2.4.1",
"deepcopy": "1.0.0"
},
"peerDependencies": {
"webpack": "^4.28.4"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"ava": "1.0.1",
"babel-loader": "8.0.5",
"esm": "3.0.84",
"husky": "2.4.0",
"lint-staged": "8.2.0",
"prettier": "1.18.0",
"release-it": "12.0.1",
"webpack": "4.39.1",
"webpack-cli": "3.2.1"
},
"lint-staged": {
"linters": {
"{src,tests}/**/*.js": [
"prettier --write",
"git add"
]
},
"ignore": [
"tests/**/fixtures/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}