-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "calculator",
"version": "1.0.0",
"description": "Jut some simple lexical analysis and building an Abstract Syntax Tree to evaluate simple mathematical expresssions",
"main": "ast.js",
"scripts": {
"build": "tsc",
"lint": "eslint ./src/ --ext .ts,.js --fix",
"test": "mocha",
"test:watch": "mocha --watch --watch-files src/**/*,test/**/*.test.ts",
"ts-node": "ts-node",
"nodemon": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coder13/calculator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coder13/calculator/issues"
},
"homepage": "https://github.com/coder13/calculator#readme",
"dependencies": {
"@types/node": "^14.14.6",
"debug": "^4.3.2",
"expr-eval": "^2.0.2",
"tplant": "^3.1.0",
"tsuml2": "^0.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}