|
| 1 | +{ |
| 2 | + "name": "mini-css-extract-plugin", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "desc", |
| 5 | + "main": "dist/cjs.js", |
| 6 | + "repository": "https://github.com/webpack-contrib/mini-css-extract-plugin", |
| 7 | + "author": "Tobias Koppers @sokra", |
| 8 | + "license": "MIT", |
| 9 | + "private": false, |
| 10 | + "scripts": { |
| 11 | + "webpack-defaults": "webpack-defaults", |
| 12 | + "start": "npm run build -- -w", |
| 13 | + "appveyor:test": "npm run test", |
| 14 | + "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'", |
| 15 | + "clean": "del-cli dist", |
| 16 | + "lint": "eslint --cache src test", |
| 17 | + "lint-staged": "lint-staged", |
| 18 | + "prebuild": "npm run clean", |
| 19 | + "prepublish": "npm run build", |
| 20 | + "release": "standard-version", |
| 21 | + "security": "nsp check", |
| 22 | + "test": "jest", |
| 23 | + "test:watch": "jest --watch", |
| 24 | + "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", |
| 25 | + "travis:lint": "npm run lint && npm run security", |
| 26 | + "travis:test": "npm run test -- --runInBand", |
| 27 | + "travis:coverage": "npm run test:coverage -- --runInBand" |
| 28 | + }, |
| 29 | + "devDependencies": { |
| 30 | + "babel-cli": "^6.26.0", |
| 31 | + "babel-jest": "^22.2.2", |
| 32 | + "babel-plugin-transform-object-rest-spread": "^6.26.0", |
| 33 | + "babel-polyfill": "^6.26.0", |
| 34 | + "babel-preset-env": "^1.6.1", |
| 35 | + "cross-env": "^5.1.3", |
| 36 | + "del-cli": "^1.1.0", |
| 37 | + "eslint": "^4.17.0", |
| 38 | + "eslint-config-webpack": "^1.2.5", |
| 39 | + "eslint-plugin-import": "^2.8.0", |
| 40 | + "jest": "^22.2.2", |
| 41 | + "lint-staged": "^6.1.0", |
| 42 | + "nsp": "^3.1.0", |
| 43 | + "pre-commit": "^1.2.2", |
| 44 | + "standard-version": "^4.3.0", |
| 45 | + "webpack": "^3.11.0", |
| 46 | + "webpack-defaults": "^1.6.0" |
| 47 | + }, |
| 48 | + "files": [ |
| 49 | + "dist" |
| 50 | + ], |
| 51 | + "engines": { |
| 52 | + "node": ">= 4.3 < 5.0.0 || >= 5.10" |
| 53 | + }, |
| 54 | + "peerDependencies": { |
| 55 | + "webpack": "^2.0.0 || ^3.0.0" |
| 56 | + }, |
| 57 | + "pre-commit": "lint-staged", |
| 58 | + "lint-staged": { |
| 59 | + "*.js": [ |
| 60 | + "eslint --fix", |
| 61 | + "git add" |
| 62 | + ] |
| 63 | + } |
| 64 | +} |
0 commit comments