UNPKG

2.42 kBJSONView Raw
1{
2 "name": "exports-loader",
3 "version": "5.0.0",
4 "description": "exports loader module for webpack",
5 "license": "MIT",
6 "repository": "webpack-contrib/exports-loader",
7 "author": "Tobias Koppers @sokra",
8 "homepage": "https://github.com/webpack-contrib/exports-loader",
9 "bugs": "https://github.com/webpack-contrib/exports-loader/issues",
10 "funding": {
11 "type": "opencollective",
12 "url": "https://opencollective.com/webpack"
13 },
14 "main": "dist/cjs.js",
15 "engines": {
16 "node": ">= 18.12.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 --production",
25 "lint:prettier": "prettier --cache --list-different .",
26 "lint:js": "eslint --cache .",
27 "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
28 "lint": "npm-run-all -l -p \"lint:**\"",
29 "fix:js": "npm run lint:js -- --fix",
30 "fix:prettier": "npm run lint:prettier -- --write",
31 "fix": "npm-run-all -l fix:js fix:prettier",
32 "test:only": "cross-env NODE_ENV=test jest",
33 "test:watch": "npm run test:only -- --watch",
34 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
35 "pretest": "npm run lint",
36 "test": "npm run test:coverage",
37 "prepare": "husky install && npm run build",
38 "release": "standard-version"
39 },
40 "files": [
41 "dist"
42 ],
43 "peerDependencies": {
44 "webpack": "^5.0.0"
45 },
46 "dependencies": {
47 "source-map": "^0.6.1"
48 },
49 "devDependencies": {
50 "@babel/cli": "^7.23.4",
51 "@babel/core": "^7.23.7",
52 "@babel/preset-env": "^7.23.8",
53 "@commitlint/cli": "^18.4.4",
54 "@commitlint/config-conventional": "^18.4.4",
55 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
56 "babel-jest": "^29.7.0",
57 "babel-loader": "^8.3.0",
58 "cross-env": "^7.0.3",
59 "cspell": "^8.3.2",
60 "del": "^7.1.0",
61 "del-cli": "^5.1.0",
62 "eslint": "^8.56.0",
63 "eslint-config-prettier": "^9.1.0",
64 "eslint-plugin-import": "^2.29.1",
65 "husky": "^8.0.3",
66 "jest": "^29.7.0",
67 "lint-staged": "^15.2.0",
68 "memfs": "^4.6.0",
69 "npm-run-all": "^4.1.5",
70 "prettier": "^3.2.2",
71 "standard-version": "^9.5.0",
72 "webpack": "^5.89.0"
73 },
74 "keywords": [
75 "webpack"
76 ]
77}