-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 764 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
{
"name": "very-simple-expression",
"version": "0.1.0",
"private": true,
"description": "\"아주 간단한 수식 문자열\" 처리기",
"scripts": {
"test": "jest"
},
"keywords": [
"lexer"
],
"author": "Taegyun Sooran Kim",
"license": "UNLICENSED",
"dependencies": {
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-jest": "^29.4.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.1",
"prettier": "^2.8.3"
}
}