-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "contentstack-asset-store-aws-s3",
"author": "Contentstack Ecosystem",
"version": "0.0.2",
"description": "Store asset files downloaded from Contentstack",
"main": "dist",
"dependencies": {
"aws-sdk": "^2.406.0",
"debug": "^4.3.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/debug": "0.0.31",
"@types/jest": "^23.3.11",
"@types/lodash": "4.14.119",
"@types/nock": "^9.3.0",
"@types/node": "10.12.12",
"@types/request": "^2.48.1",
"@types/rimraf": "^2.0.2",
"jest": "^29.0.3",
"mkdirp": "^0.5.1",
"nock": "^10.0.6",
"npm": "^8.19.2",
"rimraf": "^2.6.2",
"ts-jest": "^29.0.2",
"tslint": "5.11.0",
"typescript": "^4.2.0"
},
"scripts": {
"clean": "rimraf dist typings coverage .tokens",
"build-ts": "npm run clean && tsc",
"watch-ts": "npm run clean && tsc -w",
"start": "dist",
"tslint": "npx tslint -c tslint.json 'src/**/*.ts' --fix",
"test": "jest --colors --coverage --verbose"
},
"engines": {
"node": ">=8"
},
"keywords": [
"contentstack",
"database-adapter",
"aws-s3",
"utility"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iyerrama29/contentstack-asset-store-aws-s3.git"
},
"types": "./typings",
"license": "MIT",
"bugs": {
"url": "https://github.com/iyerrama29/contentstack-asset-store-aws-s3/issues"
},
"homepage": "https://www.contentstack.com/"
}