This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
forked from BarkleyREI/lingerprint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.97 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
{
"name": "@barkleyrei/lingerprint",
"version": "1.3.2",
"description": "A drop-in API for creating a pseudo-unique browser fingerprint for lightweight visitor analytics.",
"repository": {
"type": "git",
"url": "git+https://github.com/BarkleyREI/lingerprint.git"
},
"keywords": [
"analytics",
"tracking",
"javascript",
"browser",
"fingerprinting"
],
"author": "BarkleyREI | Ris Adams",
"license": "MIT",
"bugs": {
"url": "https://github.com/BarkleyREI/lingerprint/issues"
},
"homepage": "https://github.com/BarkleyREI/lingerprint",
"main": "",
"files": [
"dist/lingerprint.js",
"dist/lingerprint.js.map"
],
"scripts": {
"build": "webpack --config config/webpack.base.config.js --progress --mode development --env PLATFORM=local --env VERSION=dev",
"release": "webpack --config config/webpack.base.config.js --progress --mode production --env PLATFORM=production --env VERSION=production",
"watch": "webpack --config config/webpack.base.config.js --progress --mode development --env PLATFORM=local --env VERSION=dev --watch"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.2.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"serialize-javascript": ">=5.0.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0",
"webpack-visualizer-plugin": "^0.1.11"
}
}