1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "liftoff",
- "version": "2.5.0",
- "description": "Launch your command line tool with ease.",
- "author": "Tyler Kellen (http://goingslowly.com/)",
- "contributors": [],
- "repository": "js-cli/js-liftoff",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- },
- "main": "index.js",
- "files": [
- "index.js",
- "lib",
- "LICENSE"
- ],
- "scripts": {
- "test": "jshint lib index.js && jscs lib index.js && mocha -t 5000 -b -R spec test/index",
- "cover": "nyc --reporter=lcov --reporter=text-summary npm test"
- },
- "dependencies": {
- "extend": "^3.0.0",
- "findup-sync": "^2.0.0",
- "fined": "^1.0.1",
- "flagged-respawn": "^1.0.0",
- "is-plain-object": "^2.0.4",
- "object.map": "^1.0.0",
- "rechoir": "^0.6.2",
- "resolve": "^1.1.7"
- },
- "devDependencies": {
- "chai": "^3.5.0",
- "coffeescript": "^1.10.0",
- "jscs": "^3.0.7",
- "jshint": "^2.9.2",
- "mocha": "^3.5.3",
- "nyc": "^11.2.1",
- "sinon": "~1.17.4"
- },
- "keywords": [
- "command line"
- ]
- }
|