This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "web-monitoring",
"version": "3.2.1",
"description": "Simple web monitoring in nodejs",
"main": "index.js",
"scripts": {
"lint": "eslint --fix",
"test": "npm run lint && tap --100 --no-browser --coverage-report=lcov test/*test.js",
"prepare": "node prepare.js || echo 'Skipping prepare'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoniomuso/web-monitoring.git"
},
"author": "antoniomuso",
"license": "ISC",
"bugs": {
"url": "https://github.com/antoniomuso/web-monitoring/issues"
},
"homepage": "https://github.com/antoniomuso/web-monitoring#readme",
"dependencies": {
"got": "^11.8.3",
"leven": "^3.1.0",
"sanitize-html": "^2.6.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@saithodev/semantic-release-backmerge": "^2.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"nock": "^13.1.0",
"prettier": "^2.3.1",
"prettier-config-standard": "^4.0.0",
"sinon": "^13.0.1",
"tap": "^16.3.4"
},
"volta": {
"node": "16.13.0",
"npm": "8.1.0"
}
}