-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
90 lines (90 loc) · 2.26 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
{
"name": "pending-xhr-puppeteer",
"node": ">= 8.0.0",
"version": "2.3.3",
"description": "Small tool for wait that all xhr are finished in pupeteer",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/es.js",
"homepage": "https://github.com/jtassin/pending-xhr-puppeteer",
"repository": {
"type": "git",
"url": "https://github.com/jtassin/pending-xhr-puppeteer.git"
},
"bugs": {
"url": "https://github.com/jtassin/pending-xhr-puppeteer/issues"
},
"files": [
"lib"
],
"author": "Julien TASSIN",
"license": "MIT",
"private": false,
"keywords": [
"puppeteer",
"xhr",
"pending",
"wait",
"nodejs",
"e2e"
],
"devDependencies": {
"@keplr/eslint-config-backend-node": "2.5.1",
"@release-it/conventional-changelog": "3.3.0",
"@types/express": "4.17.13",
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
"@types/puppeteer": "5.4.4",
"auto-changelog": "2.3.0",
"delay": "5.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "25.3.0",
"husky": "7.0.4",
"jest": "27.4.3",
"lint-staged": "12.1.2",
"prettier": "2.5.0",
"puppeteer": "5.5.0",
"release-it": "14.11.8",
"rollup": "2.60.2",
"rollup-plugin-typescript": "1.0.1",
"rollup-plugin-typescript2": "0.31.1",
"ts-jest": "27.0.7",
"tsc": "2.0.3",
"tslib": "2.3.1",
"typescript": "4.3.5"
},
"scripts": {
"prettier:write": "prettier --single-quote --trailing-comma es5 --write src/**/*",
"lint": "eslint src/*.ts src/**/*.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"precommit": "lint-staged",
"commit:fake": "git commit --dry-run -m foo --allow-empty --amend",
"release:fake": "GITHUB_TOKEN=XXX release-it patch --dry-run --no-git.requireCleanWorkingDir --ci",
"build": "rollup -c"
},
"release-it": {
"hooks": {
"after:bump": "npm run build"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}