forked from julionc/clientjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.2 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
{
"name": "clientjs",
"version": "0.1.11",
"homepage": "https://clientjs.org",
"repository": {
"type": "git",
"url": "git://github.com/jackspirou/clientjs.git"
},
"description": "Device information and digital fingerprinting written in pure JavaScript.",
"keywords": [
"browser",
"fingerprint",
"client",
"info",
"pure",
"javascript"
],
"author": "Jack Spirou <jack@spirou.io> (http://twitter.com/jack_spirou)",
"contributors": [
{
"name": "Jack Spirou",
"url": "http://twitter.com/jack_spirou",
"email": "jack@spirou.io"
},
{
"name": "Daniel Montoya",
"url": "http://twitter.com/dsmontoya",
"email": "dsmontoyam@gmail.com"
}
],
"bugs": {
"url": "https://github.com/jackspirou/clientjs/issues"
},
"scripts": {
"build": "webpack -c webpack.config.js",
"lint": "eslint '**/*.js'",
"postinstall": "node scripts/install.js",
"posttest": "npm run test:aircover",
"prepublish": "npm run lint && npm run build",
"test": "npm run test:local",
"test:local": "karma start karma/local.conf.js",
"test:aircover": "karma start karma/aircover.conf.js",
"test:drone": "karma start karma/drone.conf.js"
},
"main": "src/client.js",
"browser": "dist/client.min.js",
"files": [
"dist/**/*",
"logo.jpg",
"src/**/*"
],
"devDependencies": {
"eslint": "^7.11.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.0.0",
"karma-jasmine": "^4.0.1",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.1.6",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.44.2",
"webpack-cli": "^4.1.0"
},
"dependencies": {
"globalthis": "^1.0.1",
"inherits": "^2.0.4",
"murmurhash-js": "^1.0.0",
"ua-parser-js": "^0.7.22"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
]
}