-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
111 lines (111 loc) · 2.82 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
{
"name": "vue-if-bot",
"version": "1.2.0",
"description": "Hide stuff from bots (especially cookie consents)",
"author": "Alexander Lichter <npm@lichter.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Developmint/vue-if-bot"
},
"bugs": {
"url": "https://github.com/Developmint/vue-if-bot/issues"
},
"main": "dist/vue-if-bot.cjs.js",
"module": "dist/vue-if-bot.es.js",
"cdn": "dist/vue-if-bot.min.js",
"unpkg": "dist/vue-if-bot.min.js",
"jsdelivr": "dist/vue-if-bot.min.js",
"scripts": {
"lint": "eslint lib test",
"test": "npm run lint && jest",
"build": "bili --format cjs,es,umd,umd-min --moduleName ifBot --no-babel.babelrc",
"release": "npm run build && standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint -e $GIT_PARAMS",
"coverage": "codecov"
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"keywords": [
"vue",
"vuejs",
"bot",
"user-agent",
"useragent",
"hide",
"consent",
"cookie",
"component",
"plugin"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/lib/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@vue/server-test-utils": "^1.0.0-beta.15",
"@vue/test-utils": "^1.0.0-beta.15",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.2",
"babel-preset-vue-app": "^2.0.0",
"bili": "^3.1.2",
"cheerio": "^1.0.0-rc.2",
"codecov": "latest",
"cross-env": "^5.1.5",
"eslint": "^4.19.1",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.0.0-rc.2",
"jest": "latest",
"jest-serializer-vue": "^1.0.0",
"jsdom": "latest",
"standard-version": "latest",
"vue-jest": "^2.6.0",
"vue-loader": "^15.2.0",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.8.3",
"webpack-dev-server": "^3.1.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run commitlint"
}
},
"dependencies": {
"vue": "^2.5.16"
}
}