-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "pure-upload",
"version": "8.4.0",
"description": "The pure upload library without dependencies",
"author": {
"name": "t.rut"
},
"license": "MIT",
"contributors": [
{
"name": "Tomáš Růt",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/keeema/pure-upload.git"
},
"bugs": {
"url": "https://github.com/keeema/pure-upload/issues"
},
"keywords": [
"pure",
"upload",
"javascript",
"typescript",
"web",
"file",
"api"
],
"prettier": {
"printWidth": 140,
"tabWidth": 4
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/jasmine": "^3.5.10",
"@types/multer": "^1.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-flatten": "^0.4.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-tap": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"gulp4-run-sequence": "^1.0.1",
"jasmine-core": "^3.5.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"lodash.template": "^4.5.0",
"merge2": "^1.3.0",
"multer": "^1.4.2",
"npm-force-resolutions": "0.0.10",
"prettier": "^2.0.5",
"typescript": "^5.6.3"
},
"dependencies": {},
"resolutions": {
"glob-parent": "^6.0.1"
},
"scripts": {
"force-resolutions": "npx npm-force-resolutions",
"build": "npm run force-resolutions & npx gulp",
"example-watch": "force-resolutions & npx gulp dwe",
"debug-watch": "force-resolutions & npx gulp dwe"
}
}