-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "inspect-loader",
"version": "1.0.0",
"description": "Webpack loader designed for loader testing and debugging. Calls a function with the received input.",
"main": "lib/loader.cjs",
"type": "module",
"scripts": {
"test": "nyc ava",
"posttest": "npm run lint",
"lint": "eslint --ignore-path .gitignore lib test --ext js,cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerigon/inspect-loader.git"
},
"keywords": [
"webpack",
"loader",
"test",
"testing",
"debug"
],
"engines": {
"node": ">=14.0.0"
},
"author": "[email protected]",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/peerigon/inspect-loader/issues"
},
"homepage": "https://github.com/peerigon/inspect-loader#readme",
"files": [
"lib",
"raw.js",
"README.md",
"LICENSE"
],
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^7.23.0",
"eslint-config-peerigon": "^30.0.2",
"eslint-plugin-jsdoc": "^32.3.0",
"nyc": "^15.1.0",
"webpack": "^5.30.0"
},
"dependencies": {
"loader-utils": "^2.0.0"
}
}