forked from langateam/sails-webpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.21 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
56
57
58
59
60
61
62
{
"name": "sails-webpack",
"version": "3.0.1",
"description": "Webpack asset pipeline hook for Sails",
"license": "MIT",
"keywords": [
"sails",
"sailsjs",
"hook",
"sails-hook",
"webpack",
"build",
"asset pipeline"
],
"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]"
},
{
"name": "Jacob Parish",
"email": "[email protected]"
}
],
"dependencies": {
"marlinspike": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.4.2",
"sails": "^0.12.13",
"webpack": "^3.3.0"
},
"peerDependencies": {
"webpack": ">= 1"
},
"scripts": {
"prepublish": "gulp",
"test": "mocha",
"build": "gulp"
},
"sails": {
"isHook": true,
"hookName": "webpack"
}
}