-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "twofactor_gateway",
"version": "0.20.0",
"description": "A two-factor auth provider for Nextcloud",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --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 css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/ChristophWurst/twofactor_gateway.git"
},
"author": "",
"license": "AGPL-3.0",
"dependencies": {
"@nextcloud/axios": "^2.3.0",
"@nextcloud/router": "^2.1.1",
"nextcloud_fetch": "^2.1.0",
"vue": "^2.7.14"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/eslint-config": "^8.3.0-beta.0",
"@nextcloud/stylelint-config": "^2.3.0",
"@nextcloud/webpack-vue-config": "^5.5.1",
"webpack-merge": "^5.9.0"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
}