-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.08 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.08 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "netlify-plugin-imagekit",
"version": "1.0.0",
"description": "The npm package helps in serving assets like images directly from imagekit apis helping in optimizing it.",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*",
"manifest.yml"
],
"scripts": {
"clean": "del-cli ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && move-file lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"test": "mocha"
},
"release": {
"branches": [
"main"
]
},
"keywords": [
"imagekit",
"netlify",
"netlify-plugin"
],
"author": "Imagekit",
"license": "MIT",
"dependencies": {
"fast-glob": "3.1.1",
"jsdom": "21"
},
"repository": {
"type": "git",
"url": "https://github.com/imagekit-developer/imagekit-netlify"
},
"bugs": {
"url": "https://github.com/imagekit-developer/imagekit-netlify/issues"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.10",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"chai": "^4.5.0",
"del-cli": "^5.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"mocha": "^10.7.0",
"move-file-cli": "^3.0.0",
"prettier": "2.3.2",
"sinon": "^18.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}