-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 990 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
{
"name": "move-file-loader",
"version": "1.0.0",
"license": "MIT",
"description": "A Webpack loader to move files from one location to another and return the contents.",
"main": "lib/index.js",
"authors": [
"Cody Reichert <[email protected]>",
"Christopher Reichert <[email protected]>",
"Assertible, Inc <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/assertible/move-file-loader.git"
},
"scripts": {
"build": "babel src --presets babel-preset-env --out-dir lib",
"build:watch": "babel src --presets babel-preset-env --out-dir lib --watch",
"prepublish": "npm run build",
"test": "echo \"No tests implemented\""
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"loader-utils": "1.1.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0"
}
}