commit
7b7c2035c7
@ -0,0 +1 @@
|
||||
node_modules
|
||||
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env node
|
||||
const titleize = require('titleize');
|
||||
console.log(titleize(process.argv[2]));
|
||||
@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "titleize-cli",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
"titleize": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/titleize/-/titleize-2.1.0.tgz",
|
||||
"integrity": "sha512-m+apkYlfiQTKLW+sI4vqUkwMEzfgEUEYSqljx1voUE3Wz/z1ZsxyzSxvH2X8uKVrOp7QkByWt0rA6+gvhCKy6g=="
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "titleize-cli",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"bin":{
|
||||
"titleize-cli": "./index.js"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"titleize": "^2.1.0"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue