-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "imagekit-javascript",
"version": "1.1.1",
"description": "Javascript SDK for using ImageKit.io in the browser",
"main": "index.js",
"dependencies": {
"lodash": "^4.17.15",
"url-polyfill": "^1.1.7"
},
"devDependencies": {
"chai": "^4.2.0",
"formdata-node": "^2.1.1",
"grunt": "^1.0.4",
"grunt-browserify": "^5.3.0",
"mocha": "^7.0.1",
"sinon": "^8.1.1"
},
"scripts": {
"build": "yarn install && ./node_modules/.bin/grunt",
"test": "yarn install && export NODE_ENV=test && ./node_modules/mocha/bin/mocha --exit -t 40000 test/*.js;ex=$? ; unset NODE_ENV ; exit $ex;",
"startSampleApp": "yarn build && cd samples/sample-app/ && yarn install && node index.js"
},
"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"
}