-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.21 KB
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
{
"name": "@inqludeit/cmp-b-gone",
"version": "0.2.1",
"description": "QualWeb plugin to dismiss cookie banners during evaluation.",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.14.1",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src"
},
"publishConfig": {
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"default": "./dist/*.js",
"types": "./dist/*.d.ts"
}
}
},
"scripts": {
"pretest": "pnpm build",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha",
"test:all": "npm run test --spec test/**/*.spec.ts",
"test:coverage": "nyc mocha",
"ts-run": "node -r ts-node/register",
"build": "npx tsc --build -v",
"build:force": "npx tsc --build -f -v",
"clean": "npx tsc --build --clean && rimraf dist",
"release": "pnpm build && pnpm changeset publish",
"release-snapshot": "pnpm build && pnpm changeset version --snapshot next && pnpm changeset publish --tag next",
"prepublish": "pnpm build"
},
"author": "Johannes L. Borresen <jlb@inqludeit.dk>",
"license": "MIT",
"dependencies": {
"consola": "^3.2.3",
"cross-env": "^7.0.3",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"rimraf": "^5.0.5",
"tslib": "^2.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "20",
"chai": "^4.4.0",
"chai-as-promised": "^7.1.1",
"commander": "^11.1.0",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"puppeteer": "^21.7.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@qualweb/core": "^0.7.53"
},
"resolutions": {
"puppeteer": "^19.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tellus/cmp-b-gone.git"
}
}