-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "custup",
"version": "1.1.7",
"description": "Highly customisable file upload library with zero dependencies",
"main": "src/custup.min.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"type-test": "npx tsd .",
"typed": "find . -type f ! -path './node_modules/*' -name '*.d.ts*' -delete; npx tsc",
"grunt": "grunt uglify cssmin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulosabayomi/CustUp.git"
},
"keywords": [
"Custup",
"file",
"uploader",
"javascript",
"file",
"uploader",
"customisable",
"file",
"upload",
"library"
],
"type": "module",
"types": "./src/custup.d.ts",
"author": "Abayomi Amusa",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulosabayomi/CustUp/issues"
},
"homepage": "https://custup.pryxy.com",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.3.100",
"@swc/jest": "^0.2.29",
"grunt": "^1.6.1",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0",
"grunt-contrib-uglify": "^5.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.0.10",
"tsd": "^0.30.3",
"undici": "^6.0.1"
},
"tsd": {
"directory": "__test__"
}
}