-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
41
42
43
44
45
46
47
48
49
{
"name": "tati",
"version": "3.2.0",
"description": "A Javascript Debugger without Using the Built-in Runtime Inspector",
"repository": "github:arashkazemi/tati",
"homepage": "https://arashkazemi.github.io/tati/",
"main": "src/tati.js",
"scripts": {
"build": "webpack",
"http": "http-server",
"jsdoc": "jsdoc -c ./jsdoc.conf.json src/tati.js"
},
"keywords": [
"javascript",
"debug",
"debugger",
"inspector",
"watch",
"breakpoint",
"run",
"jsx"
],
"author": {
"name": "Arash Kazemi",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Arash Kazemi",
"email": "[email protected]",
"web": "https://github.com/arashkazemi"
}
],
"license": "BSD-2-Clause",
"dependencies": {
"acorn": "^8.12.1",
"acorn-walk": "^8.3.4",
"astring": "^1.9.0",
"async.prototypes": "^1.0.2"
},
"devDependencies": {
"buffer": "^6.0.3",
"http-server": "^14.1.1",
"jsdoc": "^3.6.11",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev": "^1.1.1"
}
}