-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "inject-fingerprint",
"version": "1.1.3",
"description": "Create Internal proxy to inject fingerprint",
"main": "index.js",
"dependencies": {
"anyproxy": "^4.1.3",
"https-proxy-agent": "^5.0.0",
"moment": "^2.29.1",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.29.0",
"mocha": "^9.0.0",
"nodemon": "^2.0.7",
"selenium-webdriver": "^4.0.0-beta.4"
},
"scripts": {
"test": "npx mocha test/fingerprint.test.js --timeout 999999",
"preversion": "npm test && git add .",
"publish-patch": "npm version patch && npm publish",
"publish-minor": "npm version minor && npm publish",
"publish-major": "npm version major && npm publish",
"postpublish": "git push"
},
"repository": {
"type": "git",
"url": "https://github.com/laissonsilveira/inject-fingerprint.git"
},
"keywords": [
"Proxy",
"NodeJS",
"Fingerprint",
"Chrome",
"Crawler",
"WebDriver",
"Browser"
],
"author": {
"name": "Laisson R. Silveira",
"email": "[email protected]",
"url": "https://laissonsilveira.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/laissonsilveira/inject-fingerprint/issues"
},
"homepage": "https://github.com/laissonsilveira/inject-fingerprint#readme",
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}