-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 903 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 903 Bytes
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
{
"name": "calculator",
"version": "1.0.0",
"description": "a test task for Byndyusoft",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "mocha ./tests/*.test.js",
"input-tests": "mocha ./tests/input.test.js",
"addition-tests": "mocha ./tests/addition.test.js",
"rpn-parse-test": "mocha ./tests/rpn.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Addeu/calculator.git"
},
"keywords": [
"calculator",
"math",
"test"
],
"author": "Danil addeulin@gmail.com Deulin",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Addeu/calculator/issues"
},
"homepage": "https://github.com/Addeu/calculator#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.1",
"nodemon": "^2.0.4"
},
"dependencies": {
"express": "^4.17.1"
}
}