package.json
{
"name": "string-surround",
"version": "1.0.1",
"description": "Surround a string with another string",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./ --ignore-pattern node_modules/ --ignore-pattern lib",
"test": "npm run lint && npm run compile && nyc ava"
},
"repository": "dustinspecker/string-surround",
"keywords": [
"string",
"surround"
],
"author": {
"name": "Dustin Specker",
"email": "DustinSpecker@DustinSpecker.com",
"url": "http://www.github.com/dustinspecker"
},
"license": "MIT",
"files": [
"lib"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.4.0",
"babel-eslint": "^6.0.0-beta.6",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"coveralls": "^2.11.6",
"eslint": "^2.4.0",
"eslint-config-dustinspecker": "^0.4.1",
"eslint-plugin-no-use-extend-native": "^0.3.1",
"nyc": "^6.1.1"
},
"ava": {
"files": [
"tests/test.js"
],
"require": [
"babel-register"
]
},
"nyc": {
"exclude": [
"tests"
]
}
}