-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "@mochify/driver-puppeteer",
"version": "0.4.0",
"description": "Puppeteer driver for Mochify",
"homepage": "https://github.com/mochify-js/driver-puppeteer",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"No unit tests yet\"",
"test:integration": "mocha --timeout 10000 -R spec '**/*.integration.js'",
"build": "tsc --project tsconfig.pack.json",
"clean": "rimraf --glob '!(node_modules)/**/*.d.ts' '*.d.ts'",
"prepack": "npm run build",
"postpack": "npm run clean",
"preversion": "npm run lint && npm run prettier:check && tsc && npm test && npm run test:integration",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish",
"prettier:check": "prettier --check '**/*.{js,json,md}'",
"prettier:write": "prettier --write '**/*.{js,json,md}'",
"prepare": "husky"
},
"keywords": [
"mocha",
"chromium",
"headless",
"testing"
],
"author": "Maximilian Antoni <mail@maxantoni.de> (http://maxantoni.de)",
"license": "MIT",
"engines": {
"node": ">=16"
},
"eslintConfig": {
"extends": "@studio"
},
"mocha": {
"reporter": "dot",
"require": "test/hooks.js",
"ignore": "node_modules/**"
},
"dependencies": {
"puppeteer": "^23.1.0"
},
"peerDependencies": {
"@mochify/mochify": "^0.4.0 || ^0.5.0"
},
"devDependencies": {
"@sinonjs/referee-sinon": "^11.0.0",
"@studio/changes": "^3.0.0",
"@studio/eslint-config": "^7.0.0",
"@studio/related-tests": "^0.2.0",
"@studio/tsconfig": "^1.3.0",
"@types/node": "^20.10.5",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"mocha": "^10.2.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"typescript": "^5.5.4"
},
"files": [
"index.html",
"**/*.js",
"**/*.d.ts",
"!**/*.test.js",
"!test/**",
"!.*"
]
}