-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.27 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
{
"name": "we-plugin-file-local",
"description": "We.js local storage plugin, save files to one folder inside the host",
"version": "2.2.5",
"main": "plugin.js",
"scripts": {
"test": "NODE_ENV=test LOG_LV=info ./node_modules/.bin/mocha test/bootstrap.js test/**/*.test.js"
},
"dependencies": {
"gm": "^1.23.1",
"mkdirp": "^1.0.4",
"uuid": "^8.3.1"
},
"devDependencies": {
"connect-sqlite3": "^0.9.11",
"fs-extra": "^9.0.1",
"mocha": "^8.2.1",
"mysql2": "^2.2.5",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"we-core": "^3.1.14",
"we-plugin-acl": "^1.2.16",
"we-plugin-auth": "^2.3.4",
"we-plugin-file": "^3.1.0",
"we-plugin-user": "^3",
"we-test-tools": "1.0.0"
},
"keywords": [
"wejs-plugin",
"file",
"storage"
],
"files": [
"files/public",
"lib",
"locales",
"server",
"commands",
"install.js",
"plugin.js"
],
"repository": "wejs/we-plugin-file-local",
"author": "Alberto Souza <[email protected]>",
"license": "MIT",
"wejs": {
"dependencies": {
"we-plugin-file": true
},
"plugins": {
"we-plugin-acl": true,
"we-plugin-auth": true,
"we-plugin-file": true,
"we-plugin-user": true
},
"devPlugins": {}
}
}