-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 839 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
{
"name": "scalc",
"version": "2.0.1",
"description": "Smart Calculator for Nodejs supports all type of Polish notations.",
"main": "app.js",
"bin": {
"scalc": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"test": "standard && tape test/*.js | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominhhai/calculator.git"
},
"keywords": [
"calculator",
"calc",
"scalc",
"smart-calculator",
"cli-calculator"
],
"author": "Hai Do Minh",
"license": "MIT",
"bugs": {
"url": "https://github.com/dominhhai/calculator/issues"
},
"homepage": "https://github.com/dominhhai/calculator#readme",
"devDependencies": {
"faucet": "0.0.1",
"standard": "^4.0.1",
"tape": "^4.0.0"
},
"dependencies": {
"copy-paste": "^1.1.2"
}
}