-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "fahrplan",
"version": "0.3.4",
"description": "A client for Deutsche Bahn's open timetable API",
"main": "index.js",
"scripts": {
"test": "mocha test/index.js",
"build": "webpack --config webpack/config.js && webpack --config webpack/config.min.js",
"test:browser": "webpack --config webpack/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbock/fahrplan.git"
},
"keywords": [
"train",
"bahn",
"station",
"db",
"schedule",
"timetable",
"api"
],
"author": "Philipp Bock <[email protected]> (http://philippbock.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pbock/fahrplan/issues"
},
"homepage": "https://github.com/pbock/fahrplan#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"moment": "^2.11.2",
"webpack": "^1.12.14"
},
"dependencies": {
"es6-promise": "^3.1.2"
},
"browser": "./dist/fahrplan.js"
}