-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "@file-agent/uploader",
"version": "2.0.0-pre.0",
"description": "High performant file upload component with elegant and distinguishable previews for every file type and support for drag and drop, validations, default uploader with progress support and externally customizable via props and methods",
"main": "dist/file-agent-uploader.min.js",
"types": "types/index.d.ts",
"files": [
"/dist",
"/types"
],
"scripts": {
"prepare": "npm run build",
"coverage": "jest --coverage",
"lint": "tslint -p tsconfig.json",
"prebuild": "rimraf dist",
"build": "webpack --env=production",
"watch": "webpack --env=development",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"servex": "npx serve",
"dev": "webpack-dev-server --env=development",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache"
},
"author": "Safraz Razik",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/safrazik/file-agent.git"
},
"bugs": {
"url": "https://github.com/safrazik/file-agent/issues"
},
"homepage": "https://safrazik.com/file-agent/",
"dependencies": {
"@file-agent/core": "^2.0.0-pre.0"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"css-loader": "^4.2.1",
"html-loader": "^1.2.1",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sass-loader": "^9.0.3",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}