forked from peerigon/scrapegoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "scrapegoat",
"version": "1.0.1",
"description": "fetches calendar/event objects from a CalDav server",
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"caldav",
"ical",
"ics",
"calendar"
],
"dependencies": {
"ejs": "^2.3.1",
"ical.js": "^1.2.2",
"moment": "^2.13.0",
"request": "^2.75.0",
"xml2js": "^0.4.5"
},
"scripts": {
"test": "mocha --recursive -R spec --reporter dot",
"test-watch": "npm test -- --watch",
"posttest": "npm run lint",
"lint": "eslint lib test",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/scrapegoat.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerigon/scrapegoat/issues"
},
"homepage": "https://github.com/peerigon/scrapegoat",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.0.1",
"eslint-config-peerigon": "^6.0.0",
"eslint-plugin-jsdoc": "^2.3.1",
"istanbul": "^0.4.4",
"mocha": "^5.2.0",
"nock": "^10.0.0",
"rewire": "^2.3.1",
"sinon": "^1.17.6",
"standard-version": "^4.3.0"
}
}