-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "smart-source-map-loader",
"description": "A Smart Source Map Loader for Webpack",
"version": "1.3.4",
"keywords": [
"source-map",
"source-maps",
"sourcemap",
"sourcemaps",
"source",
"sources",
"map",
"maps",
"webpack",
"loader",
"webpack-loader"
],
"author": "Alexander O'Mara",
"copyright": "Copyright (c) 2018-2024 Alexander O'Mara",
"license": "MPL-2.0",
"main": "lib/index",
"engines": {
"node": ">=6.11.5"
},
"repository": "https://github.com/AlexanderOMara/smart-source-map-loader.git",
"bugs": "https://github.com/AlexanderOMara/smart-source-map-loader/issues",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint .",
"format": "prettier -w .",
"formatted": "prettier -c .",
"build": "babel src --out-dir lib --source-maps true",
"test": "node spec/runner.js lib",
"all": "npm run clean && npm run build && npm run test && npm run lint && npm run formatted",
"prepack": "npm run clean && npm run build"
},
"peerDependencies": {
"webpack": "4.x || 5.x"
},
"dependencies": {
"loader-utils": "^3.3.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^2.6.1",
"babel-plugin-search-and-replace": "^1.1.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.11.0",
"memory-fs": "^0.5.0",
"node-require-function": "^1.2.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21"
}
}