UNPKG

ineedthis

Version:
70 lines (69 loc) 1.95 kB
{ "name": "ineedthis", "version": "0.0.27", "description": "Stateful dependency management", "main": "./lib/index.js", "types": "./lib/index.d.ts", "scripts": { "build": "npm run clean && tsc && tsc -t es6 --outDir lib.es6/", "build:watch": "tsc -w", "test": "npm run build && npm run test:nobuild", "test:nobuild": "mocha -r source-map-support/register $MOCHA_OPTS", "test:watch": "nodemon --watch lib --watch test -x 'npm -s run test:nobuild'", "lint": "eslint 'src/**/*.ts'", "lint:watch": "nodemon --watch src -x 'npm -s run lint'", "dev": "concurrently --prefix '[{name}]' --names 'TS,Mocha,Lint' 'npm run build:watch' 'npm run test:watch' 'npm run lint:watch'", "clean": "rimraf lib lib.es6", "prepare": "npm run build" }, "bin": { "ineedthis-debug": "./bin/ineedthis-debug", "ineedthis-watch": "./bin/ineedthis-debug", "ineedthis-run": "./bin/ineedthis-run" }, "files": [ "lib", "bin", "lib.es6" ], "repository": { "type": "git", "url": "git+https://github.com/gpittarelli/ineedthis.git" }, "keywords": [ "service", "component", "module", "state", "dependency" ], "engines": { "node": ">=4.0.0" }, "author": "George Pittarelli", "license": "MIT", "bugs": { "url": "https://github.com/gpittarelli/ineedthis/issues" }, "homepage": "https://github.com/gpittarelli/ineedthis#readme", "devDependencies": { "@types/node": "7.0.5", "@typescript-eslint/eslint-plugin": "^2.2.0", "@typescript-eslint/parser": "^2.2.0", "chai": "^3.5.0", "chai-as-promised": "^6.0.0", "concurrently": "3.1.0", "eslint": "^6.3.0", "mocha": "^3.2.0", "nodemon": "^1.11.0", "rimraf": "2.5.4", "source-map-support": "0.4.11", "typescript": "3.6.2" }, "dependencies": { "callsite": "1.0.0", "chokidar": "1.7.0", "require-reload": "0.2.2", "resolve": "1.22.0" } }