-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "cloudinary-client",
"version": "0.0.1",
"description": "",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage"
},
"files": [
"build"
],
"bugs": {
"url": "https://github.com/NickFoden/cloudinary-client/issues"
},
"homepage": "https://github.com/NickFoden/cloudinary-client",
"keywords": [
"cloudinary",
"upload",
"images"
],
"author": "@nickfoden",
"license": "ISC",
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^25.2.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^25.3.0",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.3.1",
"typescript": "^3.7.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@types/sha1": "^1.1.2",
"sha1": "^1.1.1"
}
}