-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "sharp-loader",
"version": "2.0.0",
"license": "CC0-1.0",
"repository": "izaakschroeder/sharp-loader",
"main": "dist/sharp.js",
"dependencies": {
"fast-json-stable-stringify": "^2.1.0",
"find-cache-dir": "^1.0.0",
"loader-utils": "^2.0.0",
"mime": "^2.0.3",
"runtypes": "^6.3.0"
},
"scripts": {
"prepublish": "babel -s inline -d ./dist ./src --source-maps true -x .ts",
"test": "yarn lint && yarn spec && yarn types",
"lint": "eslint .",
"spec": "NODE_ENV=test jest --coverage --runInBand=${JEST_SERIAL:-$CI}",
"types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"@babel/preset-env": "7.14.0",
"@babel/preset-typescript": "7.13.0",
"@babel/register": "7.13.16",
"@types/find-cache-dir": "3.2.0",
"@types/loader-utils": "2.0.2",
"@types/mime": "2.0.3",
"@types/sharp": "0.28.0",
"@types/webpack": "4.41.27",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"babel-jest": "26.6.3",
"eslint": "7.25.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"jest": "26.6.3",
"ncp": "2.0.0",
"prettier": "2.1.1",
"renamer": "2.0.1",
"rimraf": "3.0.2",
"sharp": "0.28.1",
"typescript": "4.1.2",
"webpack": "^4.6.0"
},
"peerDependencies": {
"sharp": ">=0.28.0"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.[tj]sx?$": "babel-jest"
}
}
}