-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "filesrocket-cloudinary",
"version": "0.0.4",
"description": "Filesrocket service that manage the files of the Cloudinary",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "npm run lint && npm run test && tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"test": "jest",
"test:w": "npm run test -- --watch",
"release": "standard-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"prepublishOnly": "npm run build"
},
"keywords": [
"cloudinary",
"filesmanagement",
"uploads",
"files"
],
"author": {
"name": "Ivan Zaldivar",
"url": "https://github.com/thebug404"
},
"repository": {
"url": "https://github.com/Filesrocket/filesrocket-cloudinary"
},
"bugs": {
"url": "https://github.com/Filesrocket/filesrocket-cloudinary/issues"
},
"directories": {
"lib": "lib"
},
"files": [
"LICENCE",
"README.md",
"lib/**"
],
"license": "MIT",
"dependencies": {
"cloudinary": "^1.29.0",
"filesrocket": "^0.0.6"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}