-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·44 lines (44 loc) · 1.08 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
{
"name": "puppeteer-afp",
"version": "1.1.6",
"description": "Stop website fingerprinting techniques",
"main": "index.js",
"scripts": {
"lint": "eslint src --fix",
"test": "mocha --reporter spec test/**/*.spec.js",
"preversion": "npm run lint",
"prepublishOnly": "npm version patch && git push --tags && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavlealeksic/puppeteer-afp.git"
},
"keywords": [
"npm",
"puppeteer",
"security",
"nodejs",
"stealth",
"detection-evasion",
"anti-fingerprint",
"scraping",
"crawler",
"chrome",
"headless",
"scraping",
"browser automation"
],
"author": "Pavle Aleksic <pavlealeksic@live.com> (https://twitter.com/aleksicpaja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavlealeksic/puppeteer-afp/issues"
},
"homepage": "https://github.com/pavlealeksic/puppeteer-afp#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0"
}
}