-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@smash-sdk/uploader",
"version": "2.1.5",
"description": "Smash uploader library",
"main": "./dist/SmashUploader.js",
"files": [
"dist",
"README.md"
],
"keywords": [
"smash",
"fromsmash",
"node",
"nodejs",
"transfer",
"upload",
"uploader",
"file-upload",
"file-uploader",
"files",
"big-file",
"big-files",
"big file",
"big files",
"multipart",
"multipart-upload",
"multipart-uploader",
"cdn",
"library",
"typescript",
"browser",
"html",
"html5",
"html5-uploader",
"progress",
"angular",
"react",
"vue",
"http",
"https",
"promise",
"async",
"await"
],
"scripts": {
"build": "npm run webpack && npm run build:readme && npm run test:build && npm run test",
"transpile": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"test:build:complete": "npm run transpile && node ./test/test-build.js",
"test:build": "node ./test/test-build.js",
"webpack": "webpack",
"build:readme": "node build-readme.js"
},
"author": "Smash & Co",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-plugin-jest": "^24.7.0",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-extended": "^0.11.5",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@smash-sdk/core": "^2.1.1",
"@smash-sdk/transfer": "^0.1.4",
"uuid": "^8.3.2"
}
}