-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 962 Bytes
/
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
{
"name": "babel-engine-plugin",
"version": "0.3.0",
"description": "Webpack plugin that transpiles dependencies targeting Node.js versions newer than Node.js 0.10",
"license": "MIT",
"repository": "SamVerschueren/babel-engine-plugin",
"author": {
"name": "Sam Verschueren",
"email": "sam.verschueren@gmail.com",
"url": "github.com/SamVerschueren"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"webpack",
"webpack-plugin",
"babel",
"transform",
"node",
"engine"
],
"dependencies": {
"babel-core": "^6.24.0",
"read-pkg-up": "^2.0.0",
"semver": "^5.3.0",
"webpack-sources": "^0.2.3"
},
"devDependencies": {
"ava": "*",
"babel-preset-env": "^1.3.2",
"get-urls": "^7.0.0",
"pify": "^2.3.0",
"uglifyjs-webpack-plugin": "^0.4.0",
"webpack": "^3.1.0",
"xo": "*"
}
}