forked from kije/webpack-fallback-directory-resolver-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "webpack-fallback-directory-resolver-plugin",
"version": "0.1.4",
"description": "Webpack Resolver plugin to resolve modules and files through a fallback chain at compile time.",
"main": "dist/index.js",
"repository": "https://github.com/kije/webpack-fallback-directory-resolver-plugin.git",
"author": "Kim D. Jeker <github@kije.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kije/webpack-fallback-directory-resolver-plugin/issues",
"email": "github@kije.ch"
},
"keywords": [
"webpack",
"resolve",
"plugin",
"fallback",
"webpack plugin"
],
"scripts": {
"prepublish": "npm run build",
"build": "gulp build",
"watch": "gulp watch"
},
"types": "definitions/index.d.ts",
"directories": {
"lib": "dist",
"example": "example"
},
"peerDependencies": {
"webpack": ">= 1.0.0"
},
"dependencies": {
"bluebird": "^3.5.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.11",
"@types/node": "^8.0.30",
"@types/webpack": "^3.0.11",
"gulp": "^3.9.1",
"gulp-cli": "^1.4.0",
"gulp-typescript": "^3.2.2",
"gulp-watch": "^4.3.11",
"merge2": "^1.2.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}