-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
84 lines (84 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "babel-plugin-rewire",
"version": "1.2.0",
"description": "A babel plugin adding the ability to rewire module dependencies. This enables to mock modules for testing purposes.",
"main": "lib/babel-plugin-rewire.js",
"scripts": {
"test": "./node_modules/.bin/mocha && ./node_modules/.bin/mocha usage-tests",
"build": "./node_modules/.bin/babel src --out-dir lib",
"prepublish": "./node_modules/.bin/babel src --out-dir lib"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git://github.com/speedskater/babel-plugin-rewire.git"
},
"bugs": {
"url": "https://github.com/speedskater/babel-plugin-rewire/issues"
},
"keywords": [
"babel",
"plugin",
"rewire",
"es6",
"modules"
],
"author": "[email protected]",
"contributors": [
{
"name": "Robert Binna",
"email": "[email protected]"
},
{
"name": "Peet Goddard"
},
{
"name": "Eli White",
"email": "[email protected]"
},
{
"name": "Philip Spitzlinger",
"email": "[email protected]"
},
{
"name": "Gustaf Dalemar"
}
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.0.0",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-syntax-flow": "^6.8.0",
"babel-plugin-syntax-jsx": "^6.8.0 ",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.10.1 ",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"babel-plugin-transform-es2015-typeof-symbol": "^6.8.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.11.6",
"babel-template": "^6.2.0",
"babel-types": "^6.2.0",
"chai": "^3.5.0",
"core-js": "^1.0.0",
"expect.js": "^0.3.1",
"mocha": "^2.2.4",
"node-hook": "^0.1.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"regenerator-runtime": "^0.9.5",
"should": "^9.0.2",
"sinon": "^1.17.4"
}
}