forked from webpack/loader-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 811 Bytes
/
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
{
"name": "loader-utils",
"version": "3.2.0",
"author": "Tobias Koppers @sokra",
"description": "utils for webpack loaders",
"dependencies": {},
"scripts": {
"lint": "prettier --list-different . && eslint .",
"pretest": "yarn lint",
"test": "jest",
"test:only": "jest --coverage",
"test:ci": "yarn test:only",
"release": "yarn test && standard-version"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webpack/loader-utils.git"
},
"engines": {
"node": ">= 12.13.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.0.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"standard-version": "^9.3.2"
},
"main": "lib/index.js",
"files": [
"lib"
]
}