This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "browserslist-ui",
"version": "0.3.0",
"description": "Browserslist UI",
"engines": {
"node": ">=12.11"
},
"keywords": [
"browserslist",
"ui",
"caniuse",
"browsers"
],
"author": "Damian Osipiuk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DamianOsipiuk/browserslist-ui.git"
},
"bugs": {
"url": "https://github.com/DamianOsipiuk/browserslist-ui/issues"
},
"homepage": "https://github.com/DamianOsipiuk/browserslist-ui#readme",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run update-db && npm run get-versions && vue-cli-service build --modern",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"get-versions": "bash ./get-package-versions.sh",
"update-db": "npx browserslist --update-db"
},
"dependencies": {
"browserslist": "^4.16.3",
"core-js": "^3.9.1",
"register-service-worker": "^1.7.2",
"vue": "^3.0.7"
},
"devDependencies": {
"@types/caniuse-lite": "^1.0.0",
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@vue/cli-plugin-babel": "~4.5.12",
"@vue/cli-plugin-eslint": "~4.5.12",
"@vue/cli-plugin-pwa": "^4.5.12",
"@vue/cli-plugin-typescript": "~4.5.12",
"@vue/cli-plugin-unit-jest": "~4.5.12",
"@vue/cli-service": "~4.5.12",
"@vue/compiler-sfc": "^3.0.7",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-0",
"eslint": "^7.22.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"vue-jest": "^5.0.0-0"
}
}