UNPKG

2.15 kBJSONView Raw
1{
2 "name": "cache-loader",
3 "version": "1.2.3",
4 "description": "Caches the result of following loaders on disk.",
5 "author": "Tobias Koppers @sokra",
6 "license": "MIT",
7 "main": "dist/cjs.js",
8 "files": [
9 "dist"
10 ],
11 "scripts": {
12 "start": "npm run build -- -w",
13 "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
14 "clean": "del-cli dist",
15 "lint": "eslint --cache src test",
16 "lint-staged": "lint-staged",
17 "prebuild": "npm run clean",
18 "prepare": "npm run build",
19 "release": "standard-version",
20 "security": "npm audit",
21 "test": "jest",
22 "test:watch": "jest --watch",
23 "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
24 "travis:coverage": "npm run test:coverage -- --runInBand",
25 "travis:lint": "npm run lint && npm run security",
26 "travis:test": "npm run test -- --runInBand",
27 "appveyor:test": "npm run test",
28 "defaults": "webpack-defaults",
29 "webpack-defaults": "webpack-defaults"
30 },
31 "dependencies": {
32 "loader-utils": "^1.1.0",
33 "mkdirp": "^0.5.1",
34 "neo-async": "^2.5.0",
35 "schema-utils": "^0.4.2"
36 },
37 "devDependencies": {
38 "babel-cli": "^6.0.0",
39 "babel-jest": "^21.0.0",
40 "babel-plugin-transform-object-rest-spread": "^6.0.0",
41 "babel-polyfill": "^6.0.0",
42 "babel-preset-env": "^1.6.0",
43 "cross-env": "^5.0.0",
44 "del-cli": "^1.0.0",
45 "eslint": "^4.0.0",
46 "eslint-config-webpack": "^1.0.0",
47 "eslint-plugin-import": "^2.0.0",
48 "jest": "^21.0.0",
49 "lint-staged": "^5.0.0",
50 "pre-commit": "^1.0.0",
51 "standard-version": "^4.0.0",
52 "webpack": "^3.0.0",
53 "webpack-defaults": "^1.6.0"
54 },
55 "engines": {
56 "node": ">= 4.8 < 5.0.0 || >= 5.10"
57 },
58 "peerDependencies": {
59 "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
60 },
61 "repository": "https://github.com/webpack-contrib/cache-loader.git",
62 "bugs": "https://github.com/webpack-contrib/cache-loader/issues",
63 "homepage": "https://github.com/webpack-contrib/cache-loader",
64 "pre-commit": "lint-staged",
65 "lint-staged": {
66 "*.js": [
67 "eslint --fix",
68 "git add"
69 ]
70 }
71}