1 | {
|
2 | "name": "file-loader",
|
3 | "version": "5.1.0",
|
4 | "description": "A file loader module for webpack",
|
5 | "license": "MIT",
|
6 | "repository": "webpack-contrib/file-loader",
|
7 | "author": "Tobias Koppers @sokra",
|
8 | "homepage": "https://github.com/webpack-contrib/file-loader",
|
9 | "bugs": "https://github.com/webpack-contrib/file-loader/issues",
|
10 | "funding": {
|
11 | "type": "opencollective",
|
12 | "url": "https://opencollective.com/webpack"
|
13 | },
|
14 | "main": "dist/cjs.js",
|
15 | "engines": {
|
16 | "node": ">= 10.13.0"
|
17 | },
|
18 | "scripts": {
|
19 | "start": "npm run build -- -w",
|
20 | "clean": "del-cli dist",
|
21 | "prebuild": "npm run clean",
|
22 | "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
23 | "commitlint": "commitlint --from=master",
|
24 | "security": "npm audit",
|
25 | "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
26 | "lint:js": "eslint --cache .",
|
27 | "lint": "npm-run-all -l -p \"lint:**\"",
|
28 | "test:only": "cross-env NODE_ENV=test jest",
|
29 | "test:watch": "npm run test:only -- --watch",
|
30 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
31 | "pretest": "npm run lint",
|
32 | "test": "npm run test:coverage",
|
33 | "prepare": "npm run build",
|
34 | "release": "standard-version",
|
35 | "defaults": "webpack-defaults"
|
36 | },
|
37 | "files": [
|
38 | "dist"
|
39 | ],
|
40 | "peerDependencies": {
|
41 | "webpack": "^4.0.0 || ^5.0.0"
|
42 | },
|
43 | "dependencies": {
|
44 | "loader-utils": "^1.4.0",
|
45 | "schema-utils": "^2.5.0"
|
46 | },
|
47 | "devDependencies": {
|
48 | "@babel/cli": "^7.8.4",
|
49 | "@babel/core": "^7.8.4",
|
50 | "@babel/preset-env": "^7.8.4",
|
51 | "@commitlint/cli": "^8.3.5",
|
52 | "@commitlint/config-conventional": "^8.3.4",
|
53 | "@webpack-contrib/defaults": "^6.3.0",
|
54 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
55 | "babel-jest": "^25.1.0",
|
56 | "commitlint-azure-pipelines-cli": "^1.0.3",
|
57 | "cross-env": "^7.0.0",
|
58 | "del": "^5.1.0",
|
59 | "del-cli": "^3.0.0",
|
60 | "eslint": "^6.8.0",
|
61 | "eslint-config-prettier": "^6.10.0",
|
62 | "eslint-plugin-import": "^2.20.1",
|
63 | "husky": "^4.2.3",
|
64 | "jest": "^25.1.0",
|
65 | "jest-junit": "^10.0.0",
|
66 | "lint-staged": "^10.0.7",
|
67 | "memfs": "^3.1.1",
|
68 | "memory-fs": "^0.5.0",
|
69 | "npm-run-all": "^4.1.5",
|
70 | "prettier": "^1.19.1",
|
71 | "standard-version": "^7.1.0",
|
72 | "url-loader": "^3.0.0",
|
73 | "webpack": "^4.41.6"
|
74 | },
|
75 | "keywords": [
|
76 | "webpack"
|
77 | ]
|
78 | }
|