-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.43 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.43 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
{
"name": "@imagekit/javascript",
"version": "5.2.1",
"description": "ImageKit Javascript SDK",
"main": "dist/imagekit.cjs.js",
"module": "dist/imagekit.esm.js",
"browser": "dist/imagekit.min.js",
"unpkg": "dist/imagekit.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.14.5",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^15.6.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"chai": "^4.2.0",
"codecov": "^3.8.3",
"formdata-node": "2.1.0",
"mocha": "^7.0.1",
"nyc": "^15.1.0",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.22.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^6.1.0",
"sinon": "^8.1.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"web-file-polyfill": "^1.0.1"
},
"scripts": {
"dev": "rollup -c -w",
"export-types": "tsc",
"build": "rm -rf dist*;rollup -c && yarn export-types",
"test": "NODE_ENV=test nyc ./node_modules/mocha/bin/mocha --require ./test/setup.js \"test/**/*.js\"",
"startSampleApp": "yarn build && cd samples/sample-app/ && yarn install && node index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imagekit-developer/imagekit-javascript.git"
},
"keywords": [
"imagekit",
"javascript",
"image",
"video",
"upload",
"optimization",
"transformation",
"resize",
"overlay"
],
"author": "ImageKit Developer",
"license": "MIT",
"bugs": {
"url": "https://github.com/imagekit-developer/imagekit-javascript/issues"
},
"homepage": "https://github.com/imagekit-developer/imagekit-javascript#readme"
}