UNPKG

cloverfield

Version:

A next generation JavaScript project boilerplate

67 lines (66 loc) 1.84 kB
{ "name": "cloverfield", "version": "0.4.0", "description": "A next generation JavaScript project boilerplate", "main": "index.js", "bin": { "cloverfield": "build/cli.js", "cf": "build/cli.js" }, "scripts": { "lint": "eslint .", "test": "babel-node ./node_modules/.bin/blue-tape ./test/**/*.js", "cov": "npm run cov:clean && npm run cov:generate", "cov:clean": "rimraf coverage", "cov:generate": "babel-node node_modules/.bin/isparta cover --report text --report html test", "validate": "npm run lint && npm test", "validate-dev": "npm run lint && npm test | faucet", "audit": "nsp package", "precheck": "npm run validate", "check": "npm run audit && npm outdated --depth 0", "build": "npm run build:clean && npm run build:lib", "build:clean": "rimraf build", "build:lib": "babel lib --out-dir build", "prepublish": "npm run build" }, "pre-commit": [ "lint" ], "repository": { "type": "git", "url": "https://github.com/cloverfield-tools/cloverfield.git" }, "keywords": [ "Boilerplate", "JavaScript", "Node", "Browser", "Isomorphic", "Universal" ], "author": "Eric Elliott et al...", "license": "MIT", "bugs": { "url": "https://github.com/cloverfield-tools/cloverfield/issues" }, "homepage": "https://github.com/cloverfield-tools/cloverfield", "dependencies": { "babel": "^5.8.21", "nomnom": "^1.8.1", "npm": "^2.13.4" }, "devDependencies": { "babel-eslint": "^4.0.5", "babel-plugin-object-assign": "^1.2.1", "blue-tape": "^0.1.10", "dependency-check": "^2.5.0", "eslint": "^1.1.0", "faucet": "0.0.1", "glob": "^5.0.14", "isparta": "^3.0.3", "nsp": "^1.0.3", "precommit-hook": "^3.0.0", "rimraf": "^2.4.2", "sinon": "^1.15.4" } }