-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
46
47
48
49
50
51
52
53
54
{
"name": "quickmathjs",
"version": "2.2.3",
"description": "A simple web-based plaintext calculator harnessing the power of math.js for intuitive free-form calculations. Now with a command-line interface (CLI) for testing purposes.",
"main": "calculator.js",
"bin": {
"quickmath": "./quickmath.js"
},
"scripts": {
"start": "node quickmath --web",
"debug": "node --inspect=5858 quickmath.js --test",
"test": "node quickmath.js --test",
"version": "node quickmath.js --version",
"help": "node quickmath.js --help",
"web": "node quickmath.js --web"
},
"repository": {
"type": "git",
"url": "https://github.com/mofosyne/QuickMathJS.git"
},
"keywords": [
"calculator",
"math.js",
"CLI",
"web"
],
"author": "Brian Khuu <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/mofosyne/QuickMathJS/issues"
},
"homepage": "https://github.com/mofosyne/QuickMathJS",
"dependencies": {
"colors": "^1.4.0",
"diff": "^7.0.0",
"express": "^2.5.11",
"mathjs": "^13.2.0",
"opn": "^6.0.0"
},
"files": [
"calculator.js",
"quickmath.js",
"LICENSE",
"readme.md",
"testcases.md",
"userexamples.md",
"index.html",
"script.js",
"style.css",
"logo.ico",
"logo.png",
"math.min.js"
]
}