-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name": "cloudinary-microurl",
"version": "1.4.0",
"description": "A tiny library to generate cloudinary URLs from options objects",
"main": "dist/cloudinaryUrl.js",
"source": "cloudinaryUrl.js",
"module": "dist/cloudinaryUrl.m.js",
"repository": "peterpme/cloudinary-microurl.git",
"homepage": "[email protected]:peterpme/cloudinary-microurl.git",
"keywords": [
"cloudinary",
"cloudinary-url"
],
"scripts": {
"prepare": "microbundle",
"test": "jest",
"test:watch": "jest --watch",
"release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"files": [
"cloudinaryUrl.js",
"dist"
],
"authors": [
"Joseph Gentle <[email protected]>",
"Peter Piekarczyk <[email protected]"
],
"license": "MIT",
"devDependencies": {
"cloudinary-core": "2.0.8",
"jest": "^22.3.0",
"microbundle": "^0.4.3"
}
}