UNPKG

steam-web

Version:

A wrapper for the Steam Web API.

45 lines (43 loc) 1.5 kB
{ "name": "steam-web", "version": "0.7.0", "description": "A wrapper for the Steam Web API.", "keywords": [ "steam", "team fortress 2" ], "author": "Aaron Tidwell <aaron.tidwell@gmail.com>", "main": "./lib/steam", "repository": { "type": "git", "url": "http://github.com/Tidwell/nodeSteam" }, "dependencies": { "qs": "^6.1.0" }, "engines": [ "node >= 0.4.0" ], "scripts": { "test": "./node_modules/mocha/bin/mocha \"./test/**/*.spec.js\" --timeout 20000", "coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha \"./test/**/*.spec.js\" -- --timeout 20000", "format-lib": "./node_modules/jsfmt/bin/jsfmt -w ./lib ./*.js", "format-spec": "./node_modules/jsfmt/bin/jsfmt -w ./test", "format": "npm run-script format-lib && npm run-script format-spec", "lint-lib": "./node_modules/jshint/bin/jshint ./lib", "lint-spec": "./node_modules/jshint/bin/jshint ./test", "lint": "npm run-script lint-lib && npm run-script lint-spec", "integrate": "npm run-script test && npm run-script format && npm run-script lint", "docs": "./node_modules/.bin/jsdoc -r ./lib -d ./docs --readme README.md -t ./node_modules/docdash", "doc-deploy": "git subtree push --prefix docs origin gh-pages" }, "devDependencies": { "chai": "^3.5.0", "mocha": "^2.4.5", "docdash": "^0.4.0", "istanbul": "^0.4.5", "jsdoc": "^3.4.3", "jsfmt": "^0.5.3", "jshint": "^2.9.4" } }