-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "browser-image-converter",
"version": "0.2.0",
"description": "Convert image to different formats (PNG, JPEG, GIF)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --timeout 60000 --exit -r ts-node/register -r jsdom-global/register test/**/*.spec.ts",
"start": "webpack-dev-server",
"watch": "webpack --watch",
"build": "webpack --mode production",
"deploy": "npm publish"
},
"keywords": [
"typescript",
"npm packages",
"boilerplate",
"image converter"
],
"author": "Dale Nguyen",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/dalenguyen/browser-image-converter.git"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"axios": "^0.22.0",
"chai": "^4.3.4",
"html-webpack-plugin": "^5.3.2",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "~4.4.3",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.1"
},
"engines": {
"node": ">=8"
}
}