-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "tvcal",
"version": "2.0.3",
"description": "Get air dates of TV episodes as ical",
"main": "lib/tvcal.js",
"scripts": {
"test": "standard && ava",
"build": "webpack -p",
"start": "node server",
"dev": "NODE_ENV=development nodemon --ignore public/ --ignore src/ server & webpack -d --watch"
},
"author": "Fabian Schneider",
"homepage": "https://github.com/fabsrc/tvcal#readme",
"bugs": "https://github.com/fabsrc/tvcal/issues",
"license": "MIT",
"keywords": [
"tv",
"calendar",
"series",
"tvshows",
"shows",
"episodes"
],
"dependencies": {
"apicache": "^1.2.3",
"body-parser": "^1.18.3",
"express": "^4.15.2",
"ical-generator": "^1.0.4",
"nedb": "^1.8.0",
"request": "^2.88.0",
"request-promise": "^4.2.1",
"shortid": "^2.2.13"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"ava": "^0.25.0",
"babel-loader": "^8.0.0",
"browser-sync": "^2.24.7",
"browser-sync-webpack-plugin": "^2.2.2",
"mockdate": "^2.0.1",
"moment": "^2.22.2",
"nock": "^9.6.1",
"nodemon": "^1.18.4",
"proxyquire": "^2.1.0",
"redux": "^4.0.0",
"redux-persist": "^5.10.0",
"riot": "^3.11.2",
"riot-redux": "^0.3.3",
"riot-tag-loader": "^2.1.0",
"sinon": "^6.1.5",
"standard": "^12.0.1",
"supertest": "^3.1.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fabsrc/tvcal"
}
}