-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "we-plugin-portfolio",
"description": "We.js portfolio plugin",
"version": "2.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": {
"chance": "^1.1.4",
"connect-sqlite3": "^0.9.11",
"fs-extra": "^8.1.0",
"istanbul": "0.4.5",
"mocha": "7.0.1",
"rimraf": "^3.0.1",
"sinon": "8.1.1",
"supertest": "4.0.2",
"we-core": "^3.1.8",
"we-plugin-acl": "^1.2.16",
"we-plugin-auth": "^2.3.2",
"we-plugin-form": "wejs/we-plugin-form",
"we-plugin-user": "^3.0.1",
"we-plugin-view": "^2.0.1",
"we-test-tools": "1.0.0"
},
"keywords": [
"wejs-plugin"
],
"repository": "wejs/we-plugin-portfolio",
"license": "MIT",
"author": "Alberto Souza <contato@albertosouza.net>",
"wejs": {
"dependencies": {
"we-plugin-user": true,
"we-plugin-form": true,
"we-plugin-view": true
},
"plugins": {
"we-plugin-auth": true,
"we-plugin-acl": true,
"we-plugin-user": true,
"we-plugin-form": true,
"we-plugin-view": true
}
}
}