-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 853 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
{
"name": "@childrentime/js-interpreter",
"version": "1.0.9",
"description": "This project is about to implement a simple javascript parser and visualize the ast",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/childrentime/js-interpreter",
"bug": {
"url": "https://github.com/childrentime/js-interpreter/issues"
},
"keywords": ["interpreter", "typescript","parser","tokenizer"],
"author": "childrentime",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"typescript": "^4.6.4"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc -d"
}
}