-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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": "we-plugin-widget",
"description": "We.js we-plugin-widget plugin",
"version": "3.0.1",
"main": "plugin.js",
"scripts": {
"test": "NODE_ENV=test LOG_LV=info ./node_modules/.bin/mocha test/bootstrap.js test/**/*.test.js",
"coverage": "NODE_ENV=test LOG_LV=info nyc ./node_modules/.bin/mocha test/bootstrap.js test/**/*.test.js -b"
},
"homepage": "https://github.com/wejs/we-plugin-widget",
"author": "Alberto Souza <contato@albertosouza.net>",
"files": [
"plugin.js",
"install.js",
"lib",
"server",
"files/public"
],
"devDependencies": {
"connect-sqlite3": "^0.9.11",
"express-mysql-session": "^2.1.5",
"fs-extra": "^9.1.0",
"jshint": "^2.12.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"sinon": "^10.0.0",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3",
"we-core": "^3",
"we-plugin-acl": "^1.2.16",
"we-plugin-auth": "^2",
"we-plugin-user": "^3",
"we-plugin-view": "^2.0.4",
"we-test-tools": "^1.0.0",
"we-theme-site-wejs": "wejs/we-theme-site-wejs"
},
"repository": "wejs/we-plugin-widget",
"license": "MIT",
"keywords": [
"wejs-plugin"
],
"wejs": {
"plugins": {
"we-plugin-acl": true,
"we-plugin-auth": true,
"we-plugin-user": true,
"we-plugin-view": true
},
"dependencies": {
"we-plugin-user": true,
"we-plugin-view": true
},
"devPlugins": {}
}
}