@webpack-contrib/defaults
Version:
Project configuration and boilerplate defaults for webpack projects
90 lines (89 loc) • 2.4 kB
JSON
{
"name": "@webpack-contrib/defaults",
"version": "2.5.0",
"publishConfig": {
"access": "public"
},
"description": "Project configuration and boilerplate defaults for webpack projects",
"license": "MIT",
"repository": "webpack-contrib/webpack-defaults",
"author": {
"name": "Artem Sapegin",
"url": "http://sapegin.me"
},
"homepage": "https://github.com/webpack-contrib/webpack-defaults",
"main": "dist/cjs.js",
"bin": {
"webpack-defaults": "bin/index.js"
},
"engines": {
"node": ">= 6.9.0"
},
"scripts": {
"start": "npm run serve:dev src",
"lint": "eslint --cache src test",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
"clean:dist": "del-cli dist",
"lint-staged": "lint-staged",
"prebuild": "npm run clean:dist",
"postinstall": "node lib/post_install.js",
"prepublish": "npm run build",
"release": "standard-version",
"serve:dev": "nodemon $2 --exec babel-node",
"security": "nsp check",
"test": "jest",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"test:watch": "jest --watch",
"travis:coverage": "npm run test:coverage -- --runInBand",
"travis:lint": "npm run lint && npm run security",
"travis:test": "npm run test -- --runInBand",
"defaults": "./bin/index.js"
},
"files": [
"bin",
"dist",
"lib",
"src",
"templates",
"config.json"
],
"keywords": [
"webpack"
],
"dependencies": {
"chalk": "^2.3.0",
"git-username": "^1.0.0",
"mrm-core": "^3.1.1",
"path-exists": "^3.0.0",
"user-meta": "^1.0.0"
},
"devDependencies": {
"@webpack-contrib/eslint-config-webpack": "^2.0.2",
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.1",
"del-cli": "^1.1.0",
"eslint": "^4.13.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^23.0.1",
"lint-staged": "^7.1.0",
"nsp": "^3.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"standard-version": "^4.2.0"
},
"jest": {
"testEnvironment": "node"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}