-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"name": "toolgood.algorithm",
"version": "6.2",
"description": "ToolGood Algorithm Engine for JavaScript",
"type": "module",
"main": "dist/toolgood.algorithm.js",
"browser": "dist/toolgood.algorithm.min.js",
"scripts": {
"build": "webpack",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js"
],
"testEnvironment": "node"
},
"keywords": [
"algorithm",
"calculator",
"expression",
"formula"
],
"author": "ToolGood",
"license": "ToolGood Noncommercial License 1.0.0",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/node": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.22.5",
"babel-jest": "^30.3.0",
"babel-loader": "^9.1.2",
"core-js": "^3.48.0",
"jest": "^30.3.0",
"webpack": "^5.88.0",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^5.1.4"
}
}