-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "visitor-info",
"version": "0.5.0",
"description": "Gather information about user",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"repository": "https://github.com/theboolean/visitor-info",
"author": "Lorenzo Cesana",
"license": "MIT",
"private": false,
"sideEffects": false,
"engines": {
"node": ">=12",
"yarn": "^1.16.0"
},
"keywords": [
"browser",
"os",
"timezone",
"user-agent",
"country",
"visitor"
],
"scripts": {
"build": "rollup -c",
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s",
"lint": "eslint --ignore-path .gitignore --ext .js ./src/",
"test": "run-p lint test:*",
"test:audit": "yarn audit",
"test:code-duplication": "jsinspect ./src/",
"test:last-commit-message": "commitlint --from=HEAD~1"
},
"dependencies": {
"country-data": "^0.0.31",
"moment-timezone": "^0.5.21",
"ua-parser-js": "^0.7.18"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@types/node": "^17.0.8",
"conventional-changelog-cli": "^2.0.23",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^4.2.3",
"jsinspect": "^0.12.7",
"npm-run-all": "^4.1.5",
"rollup": "^2.0.6"
}
}