-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.88 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
60
61
62
63
{
"name": "twofactor_email",
"description": "Two-Factor Email Provider",
"author": [
{
"name": "Olav Seyfarth (current maintainer)",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Roeland Jago Douma (original author)"
}
],
"license": "AGPL-3.0-or-later",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "./node_modules/webpack-cli/bin/cli.js --config src/webpack.prod.config.js",
"dev": "./node_modules/webpack-cli/bin/cli.js --config src/webpack.dev.config.js --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix"
},
"dependencies": {
"nextcloud-server": "latest",
"@nextcloud/axios": "latest",
"@nextcloud/initial-state": "latest",
"vue": "^2.7.15"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/eslint-parser": "latest",
"@babel/preset-env": "latest",
"@nextcloud/eslint-config": "latest",
"@nextcloud/eslint-plugin": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"css-loader": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-vue": "latest",
"eslint-webpack-plugin": "latest",
"stylelint": "latest",
"stylelint-config-recommended-scss": "latest",
"stylelint-scss": "latest",
"stylelint-webpack-plugin": "latest",
"vue-loader": "^15.11.1",
"vue-template-compiler": "latest",
"webpack": "latest",
"webpack-cli": "latest",
"webpack-merge": "latest"
}
}