forked from 59naga/babel-plugin-add-module-exports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "babel-plugin-add-module-exports",
"version": "1.0.2",
"description": "Fix babel/babel#2212",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"start": "mocha --require babel-register --watch",
"test": "mocha --require babel-register",
"lint": "eslint src test",
"build": "babel src --out-dir lib --source-maps",
"postversion": "git push --follow-tags && conventional-github-releaser -p angular"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-rewire": "^1.1.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-power-assert": "^2.0.0",
"babel-preset-react": "^6.24.1",
"babel-template": "^6.26.0",
"babel-types": "^6.26.0",
"conventional-github-releaser": "^3.1.2",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"power-assert": "^1.6.0",
"prettier": "^1.13.7"
},
"optionalDependencies": {},
"keywords": [
"babel-plugin",
"module.exports"
],
"author": "59naga <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/59naga/babel-plugin-add-module-exports.git"
},
"bugs": {
"url": "https://github.com/59naga/babel-plugin-add-module-exports/issues"
},
"homepage": "https://github.com/59naga/babel-plugin-add-module-exports#readme"
}