-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.74 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": "@dabapps/django-s3-file-upload",
"version": "0.1.3",
"description": "Upload files from the browser to S3 - client side implementation",
"main": "dist/index.js",
"directories": {},
"publishConfig": {
"access": "public"
},
"scripts": {
"dist": "rm -rf dist/ && mkdir -p dist/ && tsc --project './tsconfig.dist.json'",
"typecheck": "tsc --noEmit --project tsconfig.json",
"lint": "tsc --noEmit --project tsconfig.json && npm run prettier-check && tslint --project tsconfig.json '{src,tests,types,examples,docs}/**/*.@(ts|tsx)'",
"prettier-check": "prettier --check '**/*.{ts,tsx,js,jsx}'",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx}'",
"tests": "jest",
"test": "npm run dist && npm run lint && npm run typecheck && npm run tests -- --runInBand --coverage",
"prepublishOnly": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabapps/django-s3-file-upload-client.git"
},
"keywords": [
"npm",
"file",
"upload",
"s3",
"aws",
"django",
"dabapps"
],
"author": "DabApps",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dabapps/django-s3-file-upload-client/issues"
},
"homepage": "https://github.com/dabapps/django-s3-file-upload-client#readme",
"dependencies": {
"@dabapps/redux-create-reducer": "^1.0.3",
"@types/redux-thunk": "^2.1.0",
"axios": "^0.18.1",
"js-cookie": "^2.2.1",
"redux": "*",
"redux-thunk": "*"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/js-cookie": "^2.2.4",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-dabapps": "^0.6.2",
"typescript": "^3.3.4000"
}
}