-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.83 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
{
"name": "russians-detector",
"description": "Detection of russians to further restrictions implementation.",
"version": "1.1.4",
"source": "src/index.js",
"module": "dist/index.es.js",
"main": "dist/index.js",
"targets": {
"main": {
"optimize": true
},
"module": {
"optimize": true
}
},
"scripts": {
"dist:clean": "npx shx rm -rf dist/*",
"www:clean": "npx shx rm -rf www/*",
"src:build": "npx parcel build",
"build": "npm run dist:clean && npm run src:build",
"serve": "npm run www:clean && npx parcel index.html --dist-dir www",
"version": "npx auto-changelog -p && git add CHANGELOG.md",
"release:major": "npm run build && npm version major -m 'feat!: Upgrade to version %s' && git push && git push --tags && npm publish",
"release:minor": "npm run build && npm version minor -m 'feat: Upgrade to version %s' && git push && git push --tags && npm publish",
"release:patch": "npm run build && npm version patch -m 'fix: Upgrade to version %s' && git push && git push --tags && npm publish"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mr-devboy/russians-detector.git"
},
"keywords": [
"detector",
"identifier",
"checker",
"is-russian",
"is",
"russian",
"russians",
"ip",
"geo",
"geoip",
"geolookup",
"lookup",
"web",
"browser",
"pure",
"lightweight"
],
"author": "Bohdan Yatsenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mr-devboy/russians-detector/issues"
},
"homepage": "https://github.com/mr-devboy/russians-detector#readme"
}