UNPKG

1.64 kBJSONView Raw
1{
2 "author": "Cloudinary <info@cloudinary.com>",
3 "name": "cloudinary",
4 "description": "Cloudinary NPM for node.js integration",
5 "version": "1.13.2",
6 "homepage": "http://cloudinary.com",
7 "license": "MIT",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/cloudinary/cloudinary_npm.git"
11 },
12 "main": "cloudinary.js",
13 "dependencies": {
14 "lodash": "^4.17.11",
15 "q": "^1.5.1"
16 },
17 "devDependencies": {
18 "babel-cli": "^6.26.0",
19 "babel-core": "^6.26.3",
20 "babel-plugin-transform-runtime": "^6.23.0",
21 "babel-polyfill": "^6.26.0",
22 "babel-preset-env": "^1.7.0",
23 "babel-preset-stage-0": "^6.24.1",
24 "babel-register": "^6.26.0",
25 "babel-runtime": "^6.26.0",
26 "coffee-script": "^1.12.7",
27 "dotenv": "4.x",
28 "expect.js": "0.3.x",
29 "jsdoc": "^3.5.5",
30 "jsdom": "^9.12.0",
31 "jsdom-global": "2.1.1",
32 "mocha": "^5.0.0",
33 "nyc": "^13.0.1",
34 "sinon": "^6.1.4"
35 },
36 "scripts": {
37 "test": "node_v=$(node --version)z\nif [[ \"${node_v%%.*z}\" == 'v4' ]]\nthen\nnpm run test-es5\nelse\necho 10 && npm run test-es6\nfi",
38 "compile": "node_modules/.bin/babel lib --out-dir lib-es5 --delete-dir-on-start --verbose",
39 "test-es6": "which node && node node_modules/.bin/mocha --ui bdd -R spec --recursive test/",
40 "test-es5": "node node_modules/.bin/mocha -R spec --recursive --require 'babel-register' --require 'babel-polyfill' test/",
41 "docs": "npm run compile && node_modules/.bin/jsdoc -d docs -r -p lib/*"
42 },
43 "optionalDependencies": {},
44 "engines": {
45 "node": ">=0.6"
46 },
47 "browserify": {
48 "transform": [
49 "coffeeify"
50 ]
51 }
52}