metallic-interfaces
Version:
Common interfaces for metallic services
59 lines (58 loc) • 1.57 kB
JSON
{
"name": "metallic-interfaces",
"version": "0.4.0",
"description": "Common interfaces for metallic services",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/CartoDB/metallic-interfaces.git"
},
"keywords": [
"interface",
"metallic"
],
"author": "Daniel García Aubert <dgaubert@carto.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/CartoDB/metallic-interfaces/issues"
},
"homepage": "https://github.com/CartoDB/metallic-interfaces#readme",
"engines": {
"node": ">=7.6.0"
},
"directories": {
"test": "test"
},
"dependencies": {
"metallic-errors": "^0.3.0"
},
"scripts": {
"prebuild": "npm run clean",
"build": "babel src -d lib --source-maps inline",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib",
"coverage": "nyc --reporter=lcov npm test",
"lint": "standard \"src/**/*.js\" \"test/**/*.js\"",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"preversion": "npm test",
"test": "NODE_ENV=test mocha --recursive --require babel-register test",
"test:watch": "npm run test -- -w"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-register": "^6.26.0",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"sinon": "^4.4.0",
"standard": "^11.0.0"
},
"standard": {
"env": {
"mocha": true
}
}
}