-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "formula-arithmetic",
"version": "1.0.0",
"type": "module",
"description": "Lightweight JS arithmetic formula engine (ADD, MULTIPLY, nested functions, BODMAS)",
"main": "dist/formulae.cjs.js",
"module": "dist/formulae.esm.js",
"browser": "dist/formulae.min.js",
"scripts": {
"build:cjs": "rollup -c --format cjs --file dist/formulae.cjs.js",
"build:esm": "rollup -c --format esm --file dist/formulae.esm.js",
"build:umd": "rollup -c --format umd --name FormulaArithmetic --file dist/formulae.min.js",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd",
"minify": "terser dist/formulae.min.js -c -m -o dist/formulae.min.js",
"test": "jest",
"prerelease": "npm test && npm run build && npm run minify",
"release": "standard-version"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/you/formula-arithmetic.git"
},
"keywords": [
"formula",
"arithmetic",
"BODMAS",
"RPN",
"javascript"
],
"author": "Varun Reddy Param",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"jest": "^29.7.0",
"rollup": "^3.0.0",
"standard-version": "^9.0.0",
"terser": "^5.0.0"
}
}