forked from asapach/babel-plugin-rewire-exports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "babel-plugin-rewire-exports",
"version": "0.0.7",
"description": "Babel plugin for stubbing (ES6, ES2015) module exports",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asapach/babel-plugin-rewire-exports.git"
},
"keywords": [
"babel",
"plugin",
"rewire",
"babel-plugin"
],
"author": "Aliaksei Sapach <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/asapach/babel-plugin-rewire-exports/issues"
},
"homepage": "https://github.com/asapach/babel-plugin-rewire-exports#readme",
"dependencies": {
"babel-template": "^6.16.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"mocha": "^3.1.2",
"rimraf": "^2.5.4"
}
}