-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "shunting-yard.js",
"version": "2.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 --compilers js:@babel/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"
],
"author": "Georg Tavonius <g.tavonius@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Calamari/shunting-yard.js/issues"
},
"homepage": "https://github.com/Calamari/shunting-yard.js",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"webpack": "^3.6.0"
},
"dependencies": {}
}