-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "wasm-vs-js-benchmark",
"version": "0.7.0",
"main": "index.js",
"author": "Marco Montalbano <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcomontalbano/wasm-vs-js-benchmark"
},
"scripts": {
"prestart": "npm run build:wasm",
"start": "webpack serve --mode=development",
"start:dist": "npx serve dist",
"test:rs": "cargo build --verbose && cargo test --verbose",
"test:js": "mocha --require @babel/register ./src-js/**/*.test.js",
"test": "npm run test:rs && npm run test:js",
"build:wasm": "wasm-pack build",
"build:rs": "cargo build --release",
"build:js": "webpack --mode=production --config webpack.config.js",
"build": "npm run build:wasm && npm run build:js",
"dep:major": "npx npm-check-updates --packageFile '**/package.json' -u",
"dep:minor": "npm run dep:major -t minor"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"chart.js": "~4.4.4"
},
"devDependencies": {
"@babel/core": "~7.25.2",
"@babel/preset-env": "~7.25.4",
"@babel/register": "~7.24.6",
"copy-webpack-plugin": "~12.0.2",
"file-loader": "~6.2.0",
"mocha": "~10.7.3",
"webpack": "~5.94.0",
"webpack-cli": "~5.1.4",
"webpack-dev-server": "~5.0.4",
"worker-loader": "~3.0.8"
}
}