-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
44
45
{
"name": "sci-calc",
"description": "Command-line cientific calculator based on node REPL, with the possibility to declare functions and variables, and save them and load them. This command-line calculator possesses a permanent history.",
"version": "1.0.3",
"homepage": "https://github.com/qnp/sci-calc",
"author": {
"name": "François Risoud",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/qnp/sci-calc.git"
},
"bugs": {
"url": "https://github.com/qnp/sci-calc/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/qnp/sci-calc/blob/master/LICENSE-MIT"
}
],
"licence": "MIT",
"main": "lib/sci-calc",
"engines": {
"node": ">= 4.1.1"
},
"scripts": {},
"dependencies": {
"colors": "~0.6.2"
},
"keywords": [
"math",
"calculator",
"scientific",
"command-line",
"history",
"variables",
"functions"
],
"preferGlobal": "true",
"bin": {
"sc": "lib/sci-calc.js"
}
}