Skip to content

Commit

Permalink
chore: Use package.json files to only ship necessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Nov 22, 2021
1 parent bbbed0c commit d39208c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 27 deletions.
2 changes: 0 additions & 2 deletions .npmignore

This file was deleted.

46 changes: 21 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
{
"name": "liftoff",
"description": "Launch your command line tool with ease.",
"version": "2.3.0",
"homepage": "https://github.com/js-cli/js-liftoff",
"author": {
"name": "Tyler Kellen",
"url": "http://goingslowly.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/js-cli/js-liftoff.git"
},
"bugs": {
"url": "https://github.com/js-cli/js-liftoff/issues"
},
"description": "Launch your command line tool with ease.",
"author": "Tyler Kellen (http://goingslowly.com/)",
"contributors": [],
"repository": "js-cli/js-liftoff",
"license": "MIT",
"main": "index.js",
"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": "^0.3.2",
"is-plain-object": "^2.0.4",
"object.map": "^1.0.0",
"rechoir": "^0.6.2",
"resolve": "^1.1.7"
},
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
Expand All @@ -35,15 +41,5 @@
},
"keywords": [
"command line"
],
"dependencies": {
"extend": "^3.0.0",
"findup-sync": "^2.0.0",
"fined": "^1.0.1",
"flagged-respawn": "^0.3.2",
"is-plain-object": "^2.0.4",
"object.map": "^1.0.0",
"rechoir": "^0.6.2",
"resolve": "^1.1.7"
}
]
}

0 comments on commit d39208c

Please sign in to comment.