-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
29 lines (29 loc) · 967 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
{
"name": "babel-plugin-import-directory",
"version": "1.1.0",
"description": "Are you sick and tired of writing an `index.js` file, just to import/export all the other files in a directory?\n\nDon't seek more :)\n\nJust use `babel-plugin-import-directory` for that!",
"main": "lib/index.js",
"scripts": {
"readme": "node-readme",
"test": "nyc ava",
"test:watch": "yarn test -- --watch",
"report": "nyc report --reporter=html",
"build": "babel -d ./lib ./src",
"prepublish": "babel -d ./lib ./src --minified"
},
"dependencies": {
"@babel/template": "^7.1.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"ava": "^0.22.0",
"node-readme": "^0.1.9",
"nyc": "^11.2.1"
},
"repository": "[email protected]:Anmo/babel-plugin-import-directory.git",
"author": "Anmo <[email protected]>",
"license": "MIT"
}