forked from imagekit-developer/imagekit-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "imagekit-javascript",
"version": "1.5.4",
"description": "Javascript SDK for using ImageKit.io in the browser",
"main": "dist/imagekit.cjs.js",
"module": "dist/imagekit.esm.js",
"browser": "dist/imagekit.min.js",
"unpkg": "dist/imagekit.min.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@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.0",
"esm": "^3.2.25",
"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 test/*.js",
"startSampleApp": "yarn build && cd samples/sample-app/ && yarn install && node index.js",
"report-coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imagekit-developer/imagekit-javascript.git"
},
"keywords": [
"imagekit",
"javascript",
"sdk",
"js",
"sdk",
"image",
"optimization",
"image",
"transformation",
"image",
"resize"
],
"author": "ImageKit Developer",
"license": "MIT",
"bugs": {
"url": "https://github.com/imagekit-developer/imagekit-javascript/issues"
},
"homepage": "https://github.com/imagekit-developer/imagekit-javascript#readme",
"dependencies": {}
}