the-utils
Version:
Set of tools to keep simple things simple
96 lines (95 loc) • 2.48 kB
JSON
{
"name": "the-utils",
"version": "0.5.9",
"description": "Set of tools to keep simple things simple",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"clean:all": "rimraf lib node_modules",
"test": "better-npm-run test",
"test:coverage": "better-npm-run test:coverage",
"test:watch": "better-npm-run test:watch",
"test:watchcoverage": "better-npm-run test:watchcoverage",
"lint": "better-npm-run lint",
"lint:fix": "better-npm-run lint:fix",
"build": "better-npm-run build",
"compile": "better-npm-run compile",
"compile:watch": "better-npm-run compile:watch"
},
"betterScripts": {
"compile": {
"command": "babel src --out-dir lib",
"env": {}
},
"compile:watch": {
"command": "babel -w src --out-dir lib",
"env": {}
},
"build": {
"command": "npm run clean && better-npm-run compile",
"env": {
"DEBUG": "app:*"
}
},
"lint": {
"command": "eslint src/**/*.js",
"env": {}
},
"lint:fix": {
"command": "eslint --fix src/**/*.js",
"env": {}
},
"test": {
"command": "jest"
},
"test:coverage": {
"command": "jest --coverage"
},
"test:watch": {
"command": "jest --watch"
},
"test:watchcoverage": {
"command": "jest --watch --coverage"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hi5ve/the-utils.git"
},
"keywords": [
"Javascript",
"js",
"Object",
"Array",
"String",
"tools",
"utils"
],
"author": "Vladimir Pasechnik <vladimir.pasechnik@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hi5ve/the-utils/issues"
},
"homepage": "https://github.com/hi5ve/the-utils#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"better-npm-run": "^0.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-promise": "^3.7.0",
"jest": "^22.4.3",
"rimraf": "^2.6.2"
},
"dependencies": {}
}