-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
113 lines (113 loc) · 4.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ransomware_detection",
"version": "0.1.0",
"description": "[![Build Status](https://travis-ci.com/undo-ransomware/ransomware_detection.svg?branch=master)](https://travis-ci.com/undo-ransomware/ransomware_detection)\r [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/undo-ransomware/ransomware_detection/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/undo-ransomware/ransomware_detection/?branch=master)\r [![codecov](https://codecov.io/gh/undo-ransomware/ransomware_detection/branch/master/graph/badge.svg)](https://codecov.io/gh/undo-ransomware/ransomware_detection)",
"main": "main.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config webpack.dev.js",
"watch": "cross-env NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/undo-ransomware/ransomware_detection.git"
},
"author": "Matthias Held",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/undo-ransomware/ransomware_detection/issues"
},
"homepage": "https://github.com/undo-ransomware/ransomware_detection#readme",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-icons": "^3.0.1",
"@polymer/iron-pages": "^3.0.1",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-card": "^3.0.1",
"@polymer/paper-spinner": "^3.0.2",
"core-js": "^3.0.1",
"moment": "^2.24.0",
"nextcloud-axios": "^0.2.0",
"nextcloud-server": "^0.15.9",
"nextcloud-vue": "^0.11.4",
"time-elements": "^2.0.2",
"vue": "^2.6.10",
"vue-async-computed": "^3.7.0",
"vue-moment": "^4.1.0",
"vue-router": "^3.0.6",
"vuetify": "^2.3.10",
"vuetify-loader": "^1.6.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"@vue/test-utils": "^1.0.0-beta.29",
"acorn": "^6.1.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"deepmerge": "^4.2.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"fibers": "^5.0.0",
"file-loader": "^3.0.1",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"node-sass": "^4.13.1",
"prettier-eslint": "^8.8.2",
"raw-loader": "^2.0.0",
"sass": "^1.26.11",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"stylelint": "^8.4.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-webpack-plugin": "^0.10.5",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
}
}