-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "sails-hook-uploads",
"version": "0.4.3",
"description": "A hook for wrapping file upload support with async/await in Sails.",
"main": "index.js",
"scripts": {
"custom-tests": "node ./node_modules/mocha/bin/mocha test/*.test.js",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --ignore-pattern 'test/' && echo '✔ Your code looks good.'",
"test": "npm run lint && npm run custom-tests"
},
"keywords": [
"skipper",
"uploads",
"await",
"async/await",
"hook",
"sails",
"sails-hook"
],
"license": "MIT",
"bugs": {
"url": "http://sailsjs.com/bugs"
},
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"b64": "4.1.2",
"flaverr": "^1.9.0",
"machinepack-strings": "^6.0.0-1",
"mime-types": "2.1.19",
"parley": "^3.3.4",
"skipper-disk": "^0.5.10"
},
"sails": {
"isHook": true,
"hookName": "uploads"
},
"devDependencies": {
"eslint": "4.13.1",
"mocha": "3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sailshq/sails-hook-uploads"
},
"engines": {
"node": ">=8"
}
}