1 | {
|
2 | "name": "file-loader",
|
3 | "version": "1.1.2",
|
4 | "author": "Tobias Koppers @sokra",
|
5 | "description": "file loader module for webpack",
|
6 | "license": "MIT",
|
7 | "engines": {
|
8 | "node": ">= 4.3 < 5.0.0 || >= 5.10"
|
9 | },
|
10 | "main": "dist/cjs.js",
|
11 | "files": [
|
12 | "dist"
|
13 | ],
|
14 | "directories": {
|
15 | "test": "test"
|
16 | },
|
17 | "dependencies": {
|
18 | "loader-utils": "^1.0.2",
|
19 | "schema-utils": "^0.3.0"
|
20 | },
|
21 | "devDependencies": {
|
22 | "babel-cli": "^6.24.1",
|
23 | "babel-jest": "^20.0.3",
|
24 | "babel-plugin-transform-object-rest-spread": "^6.23.0",
|
25 | "babel-polyfill": "^6.23.0",
|
26 | "babel-preset-env": "^1.5.1",
|
27 | "cross-env": "^5.0.0",
|
28 | "del-cli": "^1.0.0",
|
29 | "eslint": "^3.19.0",
|
30 | "eslint-config-webpack": "^1.2.3",
|
31 | "eslint-plugin-import": "^2.3.0",
|
32 | "jest": "^20.0.4",
|
33 | "lint-staged": "^3.6.0",
|
34 | "nsp": "^2.6.3",
|
35 | "pre-commit": "^1.2.2",
|
36 | "standard-version": "^4.0.0",
|
37 | "webpack": "^3.6.0",
|
38 | "webpack-defaults": "^1.6.0"
|
39 | },
|
40 | "peerDependencies": {
|
41 | "webpack": "^2.0.0 || ^3.0.0"
|
42 | },
|
43 | "scripts": {
|
44 | "start": "npm run build -- -w",
|
45 | "appveyor:test": "npm run test",
|
46 | "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
|
47 | "clean": "del-cli dist",
|
48 | "lint": "eslint --cache src test",
|
49 | "lint-staged": "lint-staged",
|
50 | "prepublish": "npm run build",
|
51 | "prebuild": "npm run clean",
|
52 | "release": "standard-version",
|
53 | "security": "nsp check",
|
54 | "test": "jest",
|
55 | "test:watch": "jest --watch",
|
56 | "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
|
57 | "travis:coverage": "npm run test:coverage -- --runInBand",
|
58 | "travis:test": "npm run test -- --runInBand",
|
59 | "travis:lint": "npm run lint && npm run security",
|
60 | "webpack-defaults": "webpack-defaults"
|
61 | },
|
62 | "repository": {
|
63 | "type": "git",
|
64 | "url": "https://github.com/webpack/file-loader.git"
|
65 | },
|
66 | "bugs": {
|
67 | "url": "https://github.com/webpack/file-loader/issues"
|
68 | },
|
69 | "homepage": "https://github.com/webpack/file-loader",
|
70 | "pre-commit": "lint-staged",
|
71 | "lint-staged": {
|
72 | "*.js": [
|
73 | "eslint --fix",
|
74 | "git add"
|
75 | ]
|
76 | }
|
77 | }
|