-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 759 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 759 Bytes
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
{
"name": "emscripten-jpegreader",
"version": "0.2.0",
"description": "A simple Emscripten Jpeg Reader",
"main": "index.js",
"scripts": {
"build": "node scripts/makem.js; echo Built at `date`",
"dev-es6": "webpack --mode development --progress --watch",
"build-es6": "webpack --mode production"
},
"keywords": [
"Emscripten",
"Jpeg",
"javascript"
],
"author": "kalwalt (Walter Perdan)",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.16.7",
"axios": "^0.24.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"babel-loader": "^8.2.3",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
}
}