straal
Version:
Wrapper for Xray's REST API
84 lines (83 loc) • 1.53 kB
JSON
{
"name": "straal",
"version": "0.0.5",
"description": "Wrapper for Xray's REST API",
"author": {
"name": "João Galego",
"email": "jgalego1990@gmail.com",
"url": "http://jpsgalego.byethost11.com"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"JIRA",
"Xray",
"REST"
],
"dependencies": {
"oauth": "^0.9.15",
"jira-connector": "^2.7.0",
"request": "^2.85.0",
"fs": "^0.0.1-security",
"url": "^0.11.0",
"node-xml": "^1.0.2"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nsp": "^2.8.0",
"eslint": "^4.19.1",
"prettier": "^1.11.1",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-config-xo": "^0.20.1",
"jest": "^22.0.6",
"js-joda": "^1.8.2"
},
"engines": {
"npm": ">= 4.0.0"
},
"scripts": {
"prepublishOnly": "nsp check",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.js": [
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"jest": {
"testEnvironment": "node"
},
"license": "MIT"
}