-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
76 lines (76 loc) · 2.86 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
{
"name": "cffinit",
"version": "2.3.1",
"description": "Web form to assist people in creating a CITATION.cff file for their projects.",
"productName": "cffinit",
"author": "Netherlands eScience Center",
"private": true,
"scripts": {
"dev": "export NODE_OPTIONS=--openssl-legacy-provider && quasar dev",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && quasar build",
"lint": "eslint --ext .js,.ts,.vue --ignore-pattern node_modules ./",
"lint-fix": "eslint --ext .js,.ts,.vue --ignore-pattern node_modules ./ --fix",
"test:unit:ui": "majestic",
"test:unit": "jest --updateSnapshot",
"test:unit:ci": "jest --ci --collectCoverage=false",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch --collectCoverage=false",
"test:unit:watchAll": "jest --watchAll",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"serve:test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788",
"concurrently:dev:jest": "concurrently \"quasar dev\" \"jest --watch\""
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.1",
"core-js": "^3.6.5",
"deep-filter": "^1.0.2",
"js-yaml": "^3.14.1",
"kebabcase-keys": "^1.0.0",
"quasar": "^2.10.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@cypress/code-coverage": "^3.10.0",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@quasar/app": "^3.0.0",
"@quasar/quasar-app-extension-testing": "^2.0.0-beta.2",
"@quasar/quasar-app-extension-testing-unit-jest": "^3.0.0-alpha.3",
"@types/cypress": "^1.1.3",
"@types/js-yaml": "^4.0.2",
"@types/node": "^10.17.15",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "^10.3.1",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.0.0",
"husky": "^7.0.1",
"majestic": "^1.7.0",
"nyc": "^15.1.0"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}