extra-life-node
Version:
Extra-Life API library for node
76 lines (75 loc) • 1.94 kB
JSON
{
"name": "extra-life-node",
"version": "0.0.1",
"description": "Extra-Life API library for node",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ahadcove/extra-life-node.git"
},
"author": "Ahad Cove",
"keywords": [
"extra",
"life",
"api",
"express",
"extralife",
"extra-life"
],
"bugs": {
"url": "https://github.com/ahadcove/extra-life-node/issues"
},
"homepage": "https://github.com/ahadcove/extra-life-node",
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"demo": "npm run build && node dist/demo.js",
"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 --compilers ts: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"
},
"dependencies": {
"request": "2.88.0"
},
"devDependencies": {
"@types/chai": "4.1.6",
"@types/mocha": "5.2.5",
"@types/node": "7.0.0",
"@types/request": "2.47.1",
"@types/sinon": "5.0.5",
"chai": "4.2.0",
"coveralls": "3.0.2",
"mocha": "5.2.0",
"nyc": "13.1.0",
"request": "2.88.0",
"rimraf": "2.6.2",
"sinon": "7.1.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.1.3"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"reporter": [],
"all": true
}
}