This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
86 lines (86 loc) · 2.56 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
{
"name": "@vue-google-adsense/monorepo",
"version": "2.0.1",
"private": false,
"description": "Vue.js Google Adsense Component with InFeed and InArticle Ads support",
"keywords": [
"vuejs adsense",
"vue2 adsense",
"vue adsense",
"vuejs google adsense",
"vue2 google adsense",
"vue google adsense"
],
"bugs": {
"url": "https://github.com/mazipan/vue-google-adsense/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mazipan/vue-google-adsense.git"
},
"license": "MIT",
"author": "Irfan Maulana <[email protected]>",
"main": "dist/VueGoogleAdsense.min.js",
"jsdelivr": "dist/VueGoogleAdsense.min.js",
"unpkg": "dist/VueGoogleAdsense.min.js",
"module": "dist/VueGoogleAdsense.min.js",
"files": [
"dist"
],
"scripts": {
"bootstrap": "pnpm recursive install --reporter append-only && pnpm run build:all",
"bs": "pnpm run bootstrap",
"build:all": "turbo run build --scope=vue-google-adsense",
"build:demo": "turbo run build --scope=@vue-google-adsense/demo",
"build:lib": "turbo run build --scope=vue-google-adsense",
"dev:demo": "turbo run dev --scope=@vue-google-adsense/demo",
"lint:all": "eslint packages/** --fix",
"test": "echo \"Error: no test specified\" && exit 0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "pnpm run lint"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"@vue/cli-plugin-eslint": "4.5.12",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-standard": "6.0.0",
"@vue/eslint-config-typescript": "7.0.0",
"@vue/cli-service": "~4.5.15",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-vue": "7.9.0",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"prettier": "^2.5.1",
"tslib": "2.2.0",
"turbo": "^1.1.4",
"typescript": "4.2.4"
},
"peerDependencies": {
"@vue/cli-service": "~4.5.15",
"vue": "^3.0.0",
"vue-scriptx": "^0.2.5"
},
"engines": {
"node": ">=14.17 <15",
"pnpm": ">=6 <7",
"yarn": ">=1.22.11"
},
"packageManager": "[email protected]"
}