-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.06 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
{
"name": "node-skanetrafiken",
"version": "1.0.1",
"description": "Node.js wrapper for Skånetrafikens open API.",
"author": "Axel Niklasson <[email protected]>",
"license": "MIT",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test",
"local_coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/axelniklasson/node-skanetrafiken.git"
},
"bugs": {
"url": "https://github.com/axelniklasson/node-skanetrafiken/issues"
},
"homepage": "https://github.com/axelniklasson/node-skanetrafiken",
"dependencies": {
"request": "^2.79.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0"
}
}