forked from cloudinary/cloudinary_npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"author": "Cloudinary <[email protected]>",
"name": "cloudinary",
"description": "Cloudinary NPM for node.js integration",
"version": "1.13.2",
"homepage": "http://cloudinary.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloudinary/cloudinary_npm.git"
},
"main": "cloudinary.js",
"dependencies": {
"lodash": "^4.17.11",
"q": "^1.5.1"
},
"devDependencies": {
"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",
"dotenv": "4.x",
"expect.js": "0.3.x",
"jsdoc": "^3.5.5",
"jsdom": "^9.12.0",
"jsdom-global": "2.1.1",
"mocha": "^5.0.0",
"nyc": "^13.0.1",
"sinon": "^6.1.4",
"webpack-cli": "^3.2.1"
},
"scripts": {
"test": "node_v=$(node --version)z\nif [[ \"${node_v%%.*z}\" == 'v4' ]]\nthen\nnpm run test-es5\nelse\necho 10 && npm run test-es6\nfi",
"compile": "node_modules/.bin/babel lib --out-dir lib-es5 --delete-dir-on-start --verbose",
"test-es6": "which node && node node_modules/.bin/mocha --ui bdd -R spec --recursive test/",
"test-es5": "node node_modules/.bin/mocha -R spec --recursive --require 'babel-register' --require 'babel-polyfill' test/",
"docs": "npm run compile && node_modules/.bin/jsdoc -d docs -r -p lib/*"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.6"
},
"browserify": {
"transform": [
"coffeeify"
]
}
}