-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "babel-plugin-rewire-exports",
"version": "2.3.0",
"description": "Babel plugin for stubbing (ES6, ES2015) module exports",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"lint": "eslint src",
"test": "npm run lint && mocha --require test/babel-polyfill",
"test:watch": "npm run test -- --watch",
"prepack": "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",
"esm",
"unit-testing",
"webpack",
"rollup",
"systemjs",
"browserify",
"browser",
"node",
"jest",
"karma"
],
"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": "7"
},
"devDependencies": {
"@babel/cli": "7",
"@babel/core": "7",
"@babel/preset-env": "7",
"@babel/preset-react": "7",
"@babel/preset-typescript": "7",
"@babel/register": "7",
"eslint": "7",
"mocha": "8",
"rimraf": "3"
}
}