forked from olegskl/rpn-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 871 Bytes
/
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": "rpn-calculator",
"version": "0.0.3",
"description": "Reverse Polish notation calculator",
"main": "rpn.js",
"dependencies": {},
"devDependencies": {
"chai": "~1.10.0",
"chai-spies": "~0.5.1",
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"jshint": "~2.5.11",
"mocha": "~2.1.0",
"mocha-lcov-reporter": "0.0.1"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/olegskl/rpn-calculator.git"
},
"keywords": [
"RPN",
"calculator",
"Reverse Polish notation",
"math"
],
"author": {
"name": "Oleg Sklyanchuk",
"email": "[email protected]",
"url": "oregu.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/olegskl/rpn-calculator/issues"
},
"homepage": "https://github.com/olegskl/rpn-calculator"
}