forked from cloudinary/cloudinary_npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.09 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
75
76
77
78
79
80
{
"author": "Cloudinary <[email protected]>",
"name": "cloudinary",
"description": "Cloudinary NPM for node.js integration",
"version": "1.36.1",
"homepage": "http://cloudinary.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloudinary/cloudinary_npm.git"
},
"main": "cloudinary.js",
"dependencies": {
"cloudinary-core": "2.13.0",
"core-js": "3.30.1",
"lodash": "4.17.21",
"q": "1.5.1"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.5.0",
"@types/expect.js": "^0.3.29",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"date-fns": "^2.16.1",
"dotenv": "4.x",
"dtslint": "^0.9.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.20.2",
"expect.js": "0.3.x",
"glob": "^7.1.6",
"jsdoc": "^3.5.5",
"jsdom": "^9.12.0",
"jsdom-global": "2.1.1",
"mocha": "^6.2.3",
"mock-fs": "^4.12.0",
"nyc": "^13.3.0",
"rimraf": "^3.0.0",
"sinon": "^6.1.4",
"typescript": "^3.7.5",
"webpack-cli": "^3.2.1"
},
"files": [
"lib/**/*",
"lib-es5/**/*",
"cloudinary.js",
"babel.config.js",
"package.json",
"types/index.d.ts"
],
"types": "types",
"scripts": {
"test": "tools/scripts/test.sh",
"test:unit": "tools/scripts/test.es6.unit.sh",
"test-with-temp-cloud": "tools/scripts/tests-with-temp-cloud.sh",
"dtslint": "tools/scripts/ditslint.sh",
"lint": "tools/scripts/lint.sh",
"compile": "tools/scripts/compile.sh",
"coverage": "tools/scripts/test.es6.sh --coverage",
"test-es6": "tools/scripts/test.es6.sh",
"test-es5": "tools/scripts/test.es5.sh",
"docs": "tools/scripts/docs.sh"
},
"optionalDependencies": {
"proxy-agent": "^5.0.0"
},
"overrides": {
"vm2": "3.9.17"
},
"engines": {
"node": ">=0.6"
}
}