put.io-node
Version:
A Node.js wrapper for put.io APIv2 http://put.io
73 lines (72 loc) • 1.82 kB
JSON
{
"name": "put.io-node",
"version": "1.0.3",
"description": "A Node.js wrapper for put.io APIv2 http://put.io",
"main": "js/ts/index.js",
"typings": "js/ts/index.d.ts",
"scripts": {
"postinstall": "typings install",
"preversion": "npm run compile && npm test",
"precompile": "npm run clean",
"compile": "tsc",
"test": "env NODE_ENV=test ./node_modules/.bin/mocha tests/* --recursive --compilers ts:ts-node/register",
"update-coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coverage-report": "nyc npm test && nyc report --reporter=text --reporter=text-summary --reporter=html",
"clean": "del-cli js/ && del-cli .nyc_output && del-cli coverage/",
"lint": "tslint 'ts/**/*.ts?(x)' || exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alormil/put.io-node.git"
},
"keywords": [
"put.io",
"putio",
"npm",
"module",
"package",
"node",
"storage",
"cloud",
"torrent",
"bittorrent"
],
"author": "Alain Lormil <alormil@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alormil/put.io-node/issues"
},
"homepage": "https://github.com/alormil/put.io-node#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"del-cli": "^0.2.0",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"nyc": "^8.3.0",
"ts-node": "^1.3.0",
"tslint": "^3.15.1",
"tslint-microsoft-contrib": "^2.0.12",
"typescript": "^1.8.10",
"typings": "^1.4.0"
},
"dependencies": {
"request": "^2.75.0"
},
"nyc": {
"require": [
"ts-node/register"
],
"include": [
"ts/*.ts",
"ts/**/*.ts"
],
"exclude": [
"typings"
],
"extension": [
".ts"
],
"all": true
}
}