forked from deepsweet/baggage-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 857 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
{
"name": "baggage-loader",
"version": "0.1.0",
"description": "Webpack loader to automatically require any resources related to the required one",
"keywords": [
"webpack",
"loader"
],
"homepage": "https://github.com/deepsweet/baggage-loader",
"repository": {
"type": "git",
"url": "git://github.com/deepsweet/baggage-loader.git"
},
"author": {
"name": "Kir Belevich",
"email": "[email protected]",
"url": "https://github.com/deepsweet"
},
"main": "index.js",
"peerDependencies": {
"webpack": "1.x.x || 2.x.x",
"loader-utils": "0.x.x || 1.x.x",
"source-map": "0.x.x"
},
"devDependencies": {
"eslint": "^0.8.2",
"jscs": "^1.6.2"
},
"scripts": {
"test": "eslint index.js lib/*.js && jscs index.js lib/*.js"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT"
}