-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
101 lines (101 loc) · 3.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@themarkup/blacklight-collector",
"version": "3.4.1",
"description": "A real-time website privacy inspector.",
"main": "build/index.js",
"funding": {
"type": "individual",
"url": "https://themarkup.org/donate"
},
"scripts": {
"clean": "rimraf build *.log",
"commit": "npx git-cz",
"build": "run-s clean && run-s build:main",
"build:main": "tsc -p tsconfig.json",
"build:watch": "tsc --watch",
"example": "ts-node example.ts",
"test": "jest",
"test-server": "node ./config/test-server.js",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint -t verbose --fix --project .",
"version-beta": "git stash && standard-version --prerelease beta",
"version-major": "git stash && standard-version --release-as major",
"version-minor": "git stash && standard-version --release-as minor",
"version-patch": "git stash && standard-version --release-as patch",
"commit-hash": "echo \"module.exports='$(git show --format=%H | head -n 1)';\" > .commit-hash.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-markup/blacklight-collector.git"
},
"author": "Surya Mattu",
"license": "https://github.com/the-markup/blacklight-collector#licensing",
"bugs": {
"url": "https://github.com/the-markup/blacklight-collector/issues"
},
"homepage": "https://github.com/the-markup/blacklight-collector#readme",
"dependencies": {
"@cliqz/adblocker-puppeteer": "^1.31.1",
"lodash.flatten": "^4.4.0",
"lodash.samplesize": "^4.2.0",
"npm": "^10.5.2",
"puppeteer": "^22.15.0",
"puppeteer-har": "^1.1.2",
"run": "^1.5.0",
"stacktrace-js": "^2.0.2",
"tldts": "^6.1.34",
"tmp": "^0.2.3",
"tough-cookie": "^4.1.4",
"winston": "^3.13.1"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/firefox-webext-browser": "^120.0.4",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.149",
"@types/node": "^20.4.5",
"@types/psl": "^1.1.0",
"@types/puppeteer": "^5.4.6",
"@types/stacktrace-js": "^2.0.3",
"@types/tough-cookie": "^4.0.5",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"express": "^4.17.1",
"jest": "^28.1.0",
"jest-dev-server": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"standard-version": "^9.0.0",
"ts-jest": "^28.0.2",
"ts-node": "^8.5.4",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testPathIgnorePatterns": [
"shared",
"stack.js"
],
"preset": "ts-jest",
"globals": {
"__DEV_SERVER__": "http://localhost:8125",
"ts-jest": {
"diagnostics": false
}
},
"globalSetup": "./config/test-server-setup.js",
"globalTeardown": "./config/test-server-teardown.js"
},
"publishConfig": {
"access": "public"
}
}