UNPKG

todolists

Version:
48 lines (47 loc) 1.23 kB
{ "name": "todolists", "version": "1.0.0", "description": "Todolist in NodeJs CLI", "main": "main.js", "bin": { "todo": "main.js" }, "scripts": { "prebuild": "tsc -p . --sourcemap", "test": "tnpm run prebuild && nyc mocha", "dev": "tsc -p . --watch", "ci": "npm run prebuild && npm run cov", "cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec", "posttest": "nyc report --reporter=json && codecov -t -f coverage/*.json" }, "repository": { "type": "git", "url": "git+https://github.com/forthedamn/todolists.git" }, "keywords": [ "todolist", "todo" ], "author": "forthedamn <simonzhong0924@gmail.com>", "license": "ISC", "bugs": { "url": "https://github.com/forthedamn/todolists/issues" }, "homepage": "https://github.com/forthedamn/todolists#readme", "dependencies": { "colors": "^1.1.2", "commander": "^2.9.0", "js-enums": "^1.0.1" }, "devDependencies": { "@types/mocha": "^2.2.41", "@types/node": "^7.0.12", "@types/should": "^8.3.0", "codecov": "^1.0.1", "istanbul": "^0.4.5", "mocha": "^3.2.0", "nyc": "^11.0.3", "should": "^11.2.1", "typescript": "^2.0.0" } }