-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "scrapegoat",
"version": "2.0.0",
"description": "fetches calendar/event objects from a CalDav server",
"main": "lib/index.js",
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"caldav",
"ical",
"ics",
"calendar"
],
"dependencies": {
"cross-fetch": "^3.1.4",
"ejs": "^3.1.6",
"ical.js": "^1.4.0",
"moment": "^2.29.1",
"xml2js": "^0.4.23"
},
"scripts": {
"dev": "nodemon lib/index.js",
"lint": "run-s lint:eslint lint:package",
"lint:eslint": "eslint lib test",
"lint:package": "scriptlint --strict",
"posttest": "npm run lint",
"release": "standard-version",
"start": "node lib/index.js",
"test": "mocha --recursive -R spec --reporter dot",
"test:coverage": "nyc npm run test",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/scrapegoat.git"
},
"author": "developers@peerigon.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerigon/scrapegoat/issues"
},
"homepage": "https://github.com/peerigon/scrapegoat",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-peerigon": "^30.1.0",
"eslint-plugin-jsdoc": "^33.1.1",
"mocha": "^8.4.0",
"nock": "^13.0.11",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"scriptlint": "^2.1.3",
"sinon": "^10.0.0",
"standard-version": "^9.3.0"
}
}