forked from nursoda/twofactor_email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.73 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
{
"name": "twofactor_email",
"version": "0.1.0",
"description": "Two Factor e-mail provider",
"author": "Roeland Jago Douma <roeland@famdouma.nl>",
"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/eslint-plugin": "^1.5.0",
"nextcloud-axios": "^0.2.1",
"nextcloud-initial-state": "0.0.3",
"nextcloud-server": "^0.15.10",
"vue": "^2.6.12",
"vue-loader": "^15.9.7",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"@nextcloud/eslint-plugin": "^1.5.0",
"babel-eslint": "^10.0.3",
"css-loader": "^5.2.6",
"eslint": "^5.16.0",
"@nextcloud/eslint-config": "^1.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^5.2.3",
"stylelint": "^8.4.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.19.0",
"stylelint-webpack-plugin": "^0.10.5",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.7.3"
}
}