-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.14 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
{
"name": "jxmath",
"version": "0.0.1",
"description": "A demo for mathematical operation of BigInt",
"main": "./dist/jxmath.js",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"build": "CLEAN=true && yarn build:dev && CLEAN=false && yarn build:prod && CLEAN=false && yarn build:polyfill",
"build:prod": "NODE_ENV=production webpack --config webpack.config.js",
"build:dev": "NODE_ENV=development webpack --config webpack.config.js",
"build:polyfill": "NODE_ENV=production POLYFILL=true webpack --config webpack.config.js",
"open:cov": "open coverage/lcov-report/index.html"
},
"keywords": [
"BigInt",
"Math"
],
"author": "Jake Xu",
"license": "ISC",
"homepage": "https://github.com/JakeXu/lianlianlian/tree/main/demos/jxmath#readme",
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/preset-env": "7.18.2",
"babel-jest": "28.1.1",
"babel-loader": "8.2.5",
"babel-plugin-add-module-exports": "1.0.4",
"clean-webpack-plugin": "4.0.0",
"eslint": "8.17.0",
"jest": "28.1.1",
"webpack": "5.73.0",
"webpack-cli": "4.9.2"
}
}