underwater
Version:
Lightweight ES6+ substitute to lodash and underscore.js
44 lines (43 loc) • 1.35 kB
JSON
{
"name": "underwater",
"version": "1.5.0",
"main": "lib/index.js",
"author": "Fabio Soares <fabioars@live.com>",
"license": "MIT",
"private": false,
"scripts": {
"clear": "rimraf lib",
"build": "npm run clear && gulp build",
"build:watch": "npm run clear && gulp watch",
"build:umd": "webpack",
"build:umd:min": "webpack --output-filename underwater.min.js -p",
"build:all": "npm run build && npm run build:umd && npm run build:umd:min",
"test": "jest --verbose",
"test:tdd": "jest --verbose --watch",
"test:coverage": "jest --coverage",
"precommit": "yarn run test",
"prepublish": "npm run build:all"
},
"files": [
"dist",
"lib"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint-plugin-jest": "^21.3.2",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"rimraf": "^2.6.2",
"webpack": "^3.9.1"
},
"bugs": {
"url": "https://github.com/fabioars/underwater/issues"
},
"homepage": "https://github.com/fabioars/underwater#readme"
}