34 lines
818 B
JSON
34 lines
818 B
JSON
{
|
|
"name": "clean-git-ref",
|
|
"description": "Clean an input string into a usable git ref",
|
|
"version": "2.0.1",
|
|
"license": "Apache-2.0",
|
|
"author": "Eli White <github@eli-white.com>",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "babel src -d lib",
|
|
"style": "eslint src test && jscs src test",
|
|
"pretest": "npm run style",
|
|
"test": "mocha",
|
|
"posttest": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.6.5",
|
|
"babel-eslint": "^6.0.2",
|
|
"babel-preset-es2015": "^6.6.0",
|
|
"babel-register": "^6.7.2",
|
|
"chai": "^3.5.0",
|
|
"eslint": "^3.0.0",
|
|
"jscs": "^3.0.6",
|
|
"mocha": "^3.0.1",
|
|
"wealthfront-javascript": "^3.0.1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/TheSavior/clean-git-ref.git"
|
|
}
|
|
}
|