Skip to content
Snippets Groups Projects
package.json 1.23 KiB
Newer Older
clemo's avatar
clemo committed
{
  "name": "devcontrol-helper",
clemo's avatar
clemo committed
  "version": "1.0.0",
clemo's avatar
clemo committed
  "description": "helper functions",
  "main": "build/index.js",
  "scripts": {
    "postinstall": "npm run build",
clemo's avatar
clemo committed
    "test": "mocha --renderer --compilers js:babel-core/register test/**/*TEST.js",
clemo's avatar
clemo committed
    "cover": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha ./test/units/*TEST.js -- --recursive && rm -rf reports/coverage/ && mv coverage reports/",
clemo's avatar
clemo committed
    "build": "babel ./index.js ./lib/*.js ./lib/**/*.js --presets babel-preset-es2015 --out-dir build/",
clemo's avatar
clemo committed
    "docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
clemo's avatar
clemo committed
    "start-dev": "./node_modules/.bin/nodemon --ignore build/ --exec npm run build"
clemo's avatar
clemo committed
  },
  "keywords": [
    "helper",
    "functions",
    "included",
    "everywhere"
  ],
  "author": "Clemens Burger",
  "license": "WTFPL",
clemo's avatar
clemo committed
  "devDependencies": {
clemo's avatar
clemo committed
  },
clemo's avatar
clemo committed
  "dependencies": {
    "babel-cli": "^6.9.0",
clemo's avatar
clemo committed
clemo's avatar
clemo committed
    "env2obj": "^1.0.0",
clemo's avatar
clemo committed
clemo's avatar
clemo committed
  }
}