node-artifact-api
Version:
A node module wrapper for the Valve official Artifact API
72 lines (71 loc) • 1.87 kB
JSON
{
"name": "node-artifact-api",
"version": "0.4.2",
"description": "A node module wrapper for the Valve official Artifact API",
"license": "MIT",
"repository": "https://github.com/ammuench/node-artifact-api",
"author": "Alex Muench (alex@alexmuen.ch)",
"keywords": [
"dota",
"artifact",
"valve",
"mtg",
"card",
"tcg",
"api"
],
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --require ts-node/register --recursive 'test/**/*.spec.ts'",
"coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --require ts-node/register --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"start": "node dist/index.js",
"demo": "npm run build && node dist/demo.js"
},
"dependencies": {
"buffer": "^5.2.1",
"node-fetch": "^2.2.1",
"qunpack": "^0.5.2",
"tslint": "^5.9.0"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/mocha": "^5.2.0",
"@types/node": "^10.12.0",
"@types/node-fetch": "^2.1.2",
"@types/sinon": "^5.0.0",
"chai": "^4.0.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.0",
"sinon": "^7.1.1",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*"
],
"exclude": [
"dist"
],
"extension": [
".ts"
],
"reporter": [],
"all": true
}
}