Skip to content

Commit 2dcabfd

Browse files
committed
feat: add n argument function
1 parent 78248c5 commit 2dcabfd

File tree

5 files changed

+960
-1066
lines changed

5 files changed

+960
-1066
lines changed

.npmignore

-5
This file was deleted.

package.json

+48-44
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,50 @@
11
{
2-
"name": "math-expression-evaluator",
3-
"version": "0.0.0-development",
4-
"description": "A flexible math expression evaluator",
5-
"main": "src/formula_evaluator.js",
6-
"scripts": {
7-
"test": "mocha",
8-
"prepare": "husky install",
9-
"build": "webpack && NODE_ENV=production webpack"
10-
},
11-
"repository": {
12-
"type": "git",
13-
"url": "https://github.com/redhivesoftware/math-expression-evaluator.git"
14-
},
15-
"keywords": [
16-
"math",
17-
"expression",
18-
"evaluator",
19-
"parser"
20-
],
21-
"author": "Ankit<[email protected]>",
22-
"license": "MIT",
23-
"bugs": {
24-
"url": "https://github.com/redhivesoftware/math-expression-evaluator/issues"
25-
},
26-
"homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
27-
"devDependencies": {
28-
"cz-conventional-changelog": "^3.3.0",
29-
"eslint": "^6.6.0",
30-
"eslint-config-standard": "^10.2.1",
31-
"eslint-plugin-import": "^2.2.0",
32-
"eslint-plugin-node": "^4.2.2",
33-
"eslint-plugin-promise": "^3.5.0",
34-
"eslint-plugin-standard": "^3.0.1",
35-
"husky": "^7.0.4",
36-
"mocha": "^2.2.5",
37-
"semantic-release": "^19.0.2",
38-
"webpack-cli": "^4.9.2",
39-
"webpack": "^5.67.0"
40-
},
41-
"config": {
42-
"commitizen": {
43-
"path": "./node_modules/cz-conventional-changelog"
44-
}
45-
}
2+
"name": "math-expression-evaluator",
3+
"version": "0.0.0-development",
4+
"description": "A flexible math expression evaluator",
5+
"main": "src/formula_evaluator.js",
6+
"scripts": {
7+
"test": "mocha",
8+
"prepare": "husky install",
9+
"build": "webpack && NODE_ENV=production webpack"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/redhivesoftware/math-expression-evaluator.git"
14+
},
15+
"files": [
16+
"src",
17+
"dist"
18+
],
19+
"keywords": [
20+
"math",
21+
"expression",
22+
"evaluator",
23+
"parser"
24+
],
25+
"author": "Ankit<[email protected]>",
26+
"license": "MIT",
27+
"bugs": {
28+
"url": "https://github.com/redhivesoftware/math-expression-evaluator/issues"
29+
},
30+
"homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
31+
"devDependencies": {
32+
"cz-conventional-changelog": "^3.3.0",
33+
"eslint": "^6.6.0",
34+
"eslint-config-standard": "^10.2.1",
35+
"eslint-plugin-import": "^2.2.0",
36+
"eslint-plugin-node": "^4.2.2",
37+
"eslint-plugin-promise": "^3.5.0",
38+
"eslint-plugin-standard": "^3.0.1",
39+
"husky": "^7.0.4",
40+
"mocha": "^2.2.5",
41+
"semantic-release": "^19.0.2",
42+
"webpack-cli": "^4.9.2",
43+
"webpack": "^5.67.0"
44+
},
45+
"config": {
46+
"commitizen": {
47+
"path": "./node_modules/cz-conventional-changelog"
48+
}
49+
}
4650
}

0 commit comments

Comments
 (0)