forked from weyj4/sails-webpack
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.08 KB
/
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
46
47
48
49
50
51
52
53
54
55
{
"name": "sails-webpack",
"version": "1.0.13",
"description": "Webpack asset pipeline hook for Sails",
"keywords": [
"sails",
"sailsjs",
"hook",
"sails-hook",
"webpack",
"build",
"asset pipeline"
],
"dependencies": {
"lodash": "^3.10.1",
"marlinspike": "^1.0",
"webpack": "^1.9.6"
},
"scripts": {
"prepublish": "gulp",
"test": "mocha"
},
"main": "dist/api/hooks/webpack/index.js",
"repository": {
"type": "git",
"url": "git://github.com/balderdash-projects/sails-webpack.git"
},
"author": {
"name": "Weyland Joyner",
"email": "[email protected]"
},
"contributors": [
{
"name": "Joey Di Nardo",
"email": "[email protected]"
},
{
"name": "Travis Webb",
"email": "[email protected]"
}
],
"devDependencies": {
"babel-core": "^6.1.4",
"babel-preset-es2015": "^6.1.4",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.0",
"mocha": "^2.3.3",
"sails": "^0.11.2"
},
"sails": {
"isHook": true,
"hookName": "webpack"
},
"license": "MIT"
}