forked from Calamari/shunting-yard.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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": "shunting-yard.js",
"version": "3.0.0",
"description": "The shunting yard algorithm transforms a mathematical expression from infix notation into a reversed polish notation (postfix). This is a really extensible implementation.",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"test": "mocha --require esm --compilers js:babel-core/register ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Calamari/shunting-yard.js.git"
},
"keywords": [
"shunting yard",
"rpn",
"algorithm",
"infix",
"postfix",
"math",
"expressions",
"transformation"
],
"authors": [
"Georg Tavonius <[email protected]>",
"Allison Hancock <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Calamari/shunting-yard.js/issues"
},
"homepage": "https://github.com/Calamari/shunting-yard.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"esm": "^3.2.25",
"mocha": "^3.5.3",
"webpack": "^3.6.0"
},
"dependencies": {}
}