-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "we-plugin-group",
"description": "We.js groups, posts and membership plugin",
"version": "3.0.0",
"main": "plugin.js",
"scripts": {
"test": "NODE_ENV=test LOG_LV=info ./node_modules/.bin/mocha test/bootstrap.js test/**/*.test.js -b ",
"coverage": "NODE_ENV=test LOG_LV=info nyc ./node_modules/.bin/mocha test/bootstrap.js test/**/*.test.js -b"
},
"devDependencies": {
"connect-sqlite3": "^0.9.11",
"fs-extra": "^9.0.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"sqlite3": "^4.2.0",
"supertest": "^4.0.2",
"we-core": "^3.1.11",
"we-plugin-acl": "^1.2.16",
"we-plugin-auth": "^2.3.3",
"we-plugin-email": "^2.0.2",
"we-plugin-file": "^3",
"we-plugin-file-local": "^2.1.4",
"we-plugin-flag": "^2",
"we-plugin-user": "^3",
"we-plugin-view": "^2.0.3",
"we-plugin-vocabulary": "^3",
"we-plugin-widget": "^3.0.0",
"we-test-tools": "^1.0.0",
"we-theme-site-wejs": "^0.3.31"
},
"license": "MIT",
"repository": "wejs/we-plugin-group",
"author": "Alberto Souza <[email protected]>",
"keywords": [
"wejs-plugin"
],
"wejs": {
"plugins": {
"we-plugin-email": true,
"we-plugin-user": true,
"we-plugin-auth": true,
"we-plugin-acl": true,
"we-plugin-file": true,
"we-plugin-file-local": true,
"we-plugin-widget": true,
"we-plugin-flag": true,
"we-plugin-view": true,
"we-plugin-vocabulary": true
},
"dependencies": {
"we-plugin-user": true,
"we-plugin-file": true,
"we-plugin-flag": true,
"we-plugin-view": true,
"we-plugin-vocabulary": true
}
}
}